2006-07-20 Dick Porter <dick@ximian.com>
authorDick Porter <dick@acm.org>
Thu, 20 Jul 2006 12:35:49 +0000 (12:35 -0000)
committerDick Porter <dick@acm.org>
Thu, 20 Jul 2006 12:35:49 +0000 (12:35 -0000)
        * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
        warning.

svn path=/trunk/mono/; revision=62810

mono/metadata/ChangeLog
mono/metadata/file-io.c

index 26f988b87891acf20f9e97226a7d772e86a639de..a37e2afa72e94aaaf168b3f02d25ac22d38058db 100644 (file)
@@ -1,3 +1,8 @@
+2006-07-20  Dick Porter  <dick@ximian.com>
+
+       * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
+       warning.
+
 2006-07-20  Dick Porter  <dick@ximian.com>
 
        * threads.c (start_wrapper): Do the thread cleanup while we still
index 87e852c68948bab1f502bc9089e046ecb9141f8a..0f2e6c78cea896a2958632e18d42c578a8dd38d6 100644 (file)
@@ -813,7 +813,7 @@ gint64
 ves_icall_System_IO_MonoIO_Seek (HANDLE handle, gint64 offset, gint32 origin,
                                 gint32 *error)
 {
-       guint32 offset_hi;
+       gint32 offset_hi;
 
        MONO_ARCH_SAVE_REGS;