diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2006-05-19 19:51:05 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2006-05-19 19:51:05 (GMT) |
commit | a2ca478353561cc34d9c714dc7d484aed9c840a9 (patch) | |
tree | 94e70a7caaf27c2f136ee386dc7493d107e60f77 /Utilities/cmcurl | |
parent | 0f2f0749785ab76a30a55b9a4764ecaac39776b6 (diff) | |
download | CMake-a2ca478353561cc34d9c714dc7d484aed9c840a9.zip CMake-a2ca478353561cc34d9c714dc7d484aed9c840a9.tar.gz CMake-a2ca478353561cc34d9c714dc7d484aed9c840a9.tar.bz2 |
ENH: fix for uclibc
Diffstat (limited to 'Utilities/cmcurl')
-rw-r--r-- | Utilities/cmcurl/mprintf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Utilities/cmcurl/mprintf.c b/Utilities/cmcurl/mprintf.c index 12d1208..2bb9732 100644 --- a/Utilities/cmcurl/mprintf.c +++ b/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 |