summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Orton <jorton@apache.org>2005-12-12 11:14:10 +0000
committerJoe Orton <jorton@apache.org>2005-12-12 11:14:10 +0000
commit59d916fcfe550f6a8a2bf97ce8e715af18190fcc (patch)
tree6b3941d37188ac5b950c301d8e5e936d645efcc6
parent2160d59157defbc2f11e158473b793c7bdeeccbc (diff)
downloadhttpd-59d916fcfe550f6a8a2bf97ce8e715af18190fcc.tar.gz
* 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
-rw-r--r--include/ap_config.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ap_config.h b/include/ap_config.h
index 8bd6e0de4f..767c6123ca 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