Skip to content
Snippets Groups Projects
Commit 49c35a7f authored by Yang Tse's avatar Yang Tse
Browse files

curl tool: truly fix compiler warning

parent 57119495
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment