From dcaee6b560b693320db8ec64d2a36bc2e2c97767 Mon Sep 17 00:00:00 2001 From: Svetoslav Date: Wed, 3 Jun 2015 22:20:18 +0500 Subject: [PATCH] Fix typo --- mcs/class/corlib/System.Runtime.InteropServices/Marshal.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mcs/class/corlib/System.Runtime.InteropServices/Marshal.cs b/mcs/class/corlib/System.Runtime.InteropServices/Marshal.cs index 3f8fc5e932b..8bed0815d26 100644 --- a/mcs/class/corlib/System.Runtime.InteropServices/Marshal.cs +++ b/mcs/class/corlib/System.Runtime.InteropServices/Marshal.cs @@ -986,7 +986,7 @@ namespace System.Runtime.InteropServices internal static uint AlignedSizeOf () where T : struct { - uint size = SizeOfTypei (typeof (T)); + uint size = SizeOfType (typeof (T)); if (size == 1 || size == 2) return size; if (IntPtr.Size == 8 && size == 4) -- 2.25.1