]> granicus.if.org Git - zziplib/commitdiff
win32/msvc6 does not have struct stat.st_blocks
authorGuido Draheim <guidod@gmx.de>
Mon, 22 Dec 2003 10:37:20 +0000 (10:37 +0000)
committerGuido Draheim <guidod@gmx.de>
Mon, 22 Dec 2003 10:37:20 +0000 (10:37 +0000)
 (plugin.c)

zzip/plugin.c

index 06d77ff30004d20ccf90b9c2c22a535c8a9a8d49..afd283982b5453ad9ab5fa0218102743bc8b33cd 100644 (file)
@@ -33,7 +33,7 @@ zzip_filesize(int fd)
   if (fstat(fd, &st) < 0)
     return -1;
 
-# ifdef DEBUG 
+# if defined DEBUG && ! defined _WIN32
   if (! st.st_size && st.st_blocks > 1) /* seen on some darwin 10.1 machines */
       fprintf(stderr, "broken fstat(2) ?? st_size=%ld st_blocks=%ld\n", 
              (long) st.st_size, (long) st.st_blocks);