curl tool: truly fix compiler warning
authorYang Tse <yangsita@gmail.com>
Mon, 19 Sep 2011 18:27:25 +0000 (20:27 +0200)
committerYang Tse <yangsita@gmail.com>
Mon, 19 Sep 2011 18:27:25 +0000 (20:27 +0200)
src/tool_doswin.c

index f3ac211..dc90627 100644 (file)
@@ -73,9 +73,9 @@ __pragma(warning(pop))
 #endif
 
 #ifdef WIN32
-#  define _use_lfn(f) (0, 1)  /* long file names always available */
+#  define _use_lfn(f) ALWAYS_TRUE   /* long file names always available */
 #elif !defined(__DJGPP__) || (__DJGPP__ < 2)  /* DJGPP 2.0 has _use_lfn() */
-#  define _use_lfn(f) (1, 0)  /* long file names never available */
+#  define _use_lfn(f) ALWAYS_FALSE  /* long file names never available */
 #endif
 
 static const char *msdosify (const char *file_name);