2010-05-06 Jonathan Chambers <joncham@gmail.com>
authorJonathan Chambers <joncham@gmail.com>
Thu, 6 May 2010 16:09:42 +0000 (16:09 -0000)
committerJonathan Chambers <joncham@gmail.com>
Thu, 6 May 2010 16:09:42 +0000 (16:09 -0000)
        * gfile-win32.c: Use __stat64 instead of _stat64.

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

eglib/ChangeLog
eglib/src/gfile-win32.c

index 38759132ee072216bf99b370449006695eac0f0e..2a8f5d08a46a6dda3f532868f5b92699ec59f1b1 100644 (file)
@@ -1,3 +1,7 @@
+2010-05-06  Jonathan Chambers  <joncham@gmail.com>
+
+       * gfile-win32.c: Use __stat64 instead of _stat64.
+
 2010-05-04  Jonathan Chambers  <joncham@gmail.com>
 
        * gspawn.c: Remove extern define for MSVC.
index 944ebe5f1c49469202eab93b5676335646c45895..e30b371d96a5d5ef5382a81ba2165de1501be3d1 100644 (file)
@@ -70,7 +70,7 @@ int mkstemp (char *tmp_template)
 gboolean
 g_file_test (const gchar *filename, GFileTest test)
 {
-       struct _stat64 stat;
+       struct __stat64 stat;
        int ret = 0;
        gunichar2* utf16_filename = NULL;