Pārlūkot izejas kodu

ENH: fix for uclibc

Bill Hoffman 19 gadi atpakaļ
vecāks
revīzija
a2ca478353
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  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