소스 검색

ENH: fix for uclibc

Bill Hoffman 19 년 전
부모
커밋
a2ca478353
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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