Explorar o código

ENH: fix for uclibc

Bill Hoffman %!s(int64=19) %!d(string=hai) anos
pai
achega
a2ca478353
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      Utilities/cmcurl/mprintf.c

+ 1 - 1
Utilities/cmcurl/mprintf.c

@@ -1134,7 +1134,7 @@ int curl_msprintf(char *buffer, const char *format, ...)
   return retcode;
 }
 
-#if !defined( WIN32) || defined(__UCLIBC__) /* not needed on win32 */
+#if !(defined( WIN32) || defined(__UCLIBC__)) /* not needed on win32 */
 extern int fputc(int, FILE *);
 #endif