mirror of
https://github.com/curl/curl.git
synced 2026-05-25 19:26:20 +03:00
curl tool: truly fix compiler warning
This commit is contained in:
parent
57119495da
commit
49c35a7f9f
1 changed files with 2 additions and 2 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue