From: Joe Orton Date: Mon, 12 Dec 2005 11:14:10 +0000 (+0000) Subject: * include/ap_config.h: Fix the macro name. X-Git-Tag: 2.3.0~2670 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=59d916fcfe550f6a8a2bf97ce8e715af18190fcc;p=thirdparty%2Fapache%2Fhttpd.git * include/ap_config.h: Fix the macro name. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@356248 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/include/ap_config.h b/include/ap_config.h index 8bd6e0de4fb..767c6123ca4 100644 --- a/include/ap_config.h +++ b/include/ap_config.h @@ -256,7 +256,7 @@ * initializers if using GCC (but not G++), or for any other compiler * which claims C99 support. */ #if (defined(__GNUC__) && !defined(__cplusplus)) \ - || (defined(__STDC_VERSION) && __STDC_VERSION__ >= 199901L) + || (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) #define AP_HAVE_DESIGNATED_INITIALIZER #endif