From: Svetoslav Date: Wed, 3 Jun 2015 17:20:18 +0000 (+0500) Subject: Fix typo X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=commitdiff_plain;h=dcaee6b560b693320db8ec64d2a36bc2e2c97767;p=mono.git Fix typo --- 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)