summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPeter Powell <petpow@saberuk.com>2019-03-09 09:54:48 +0000
committerPeter Powell <petpow@saberuk.com>2019-03-09 09:54:48 +0000
commit42c7f479b2aebdec4fd190ba06097b7c5bca42a9 (patch)
tree7916d8000231c976b9101600d62bc8042585993e /src
parentf97c88f6f64e66fe2abb38860ab1e3f8c0702439 (diff)
m_httpd: GCC is __GNUC__ not _GNUC.
Diffstat (limited to 'src')
-rw-r--r--src/modules/m_httpd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_httpd.cpp b/src/modules/m_httpd.cpp
index 78c25f6d9..2e67b1551 100644
--- a/src/modules/m_httpd.cpp
+++ b/src/modules/m_httpd.cpp
@@ -40,7 +40,7 @@
#endif
// Fix warnings about shadowing in http_parser.
-#ifdef _GNUC
+#ifdef __GNUC__
# pragma GCC diagnostic ignored "-Wshadow"
#endif