diff options
author | Yang Tse <yangsita@gmail.com> | 2007-03-23 12:13:08 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2007-03-23 12:13:08 +0000 |
commit | 0f634a0c899b2c21a4f7f4af480d94937bd81bf4 (patch) | |
tree | b6eda46ba5846a5613a31879d5bd40ab63836f73 | |
parent | 047cd1a5339628884a1572a1273e55d1cca951c1 (diff) |
fix yet another leftover in previous commit
-rw-r--r-- | lib/sendf.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sendf.h b/lib/sendf.h index b3c3136d1..2c6db90b4 100644 --- a/lib/sendf.h +++ b/lib/sendf.h @@ -45,7 +45,7 @@ void Curl_failf(struct SessionHandle *, const char *fmt, ...); #else -#if (defined(__STDC__) && defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) +#if defined(__STDC__) && defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) #define infof(...) do { } while (0) #elif defined(__GNUC__) #define infof(x...) do { } while (0) |