diff options
author | Peter Powell <petpow@saberuk.com> | 2019-03-09 09:54:48 +0000 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2019-03-09 09:54:48 +0000 |
commit | 42c7f479b2aebdec4fd190ba06097b7c5bca42a9 (patch) | |
tree | 7916d8000231c976b9101600d62bc8042585993e /src | |
parent | f97c88f6f64e66fe2abb38860ab1e3f8c0702439 (diff) |
m_httpd: GCC is __GNUC__ not _GNUC.
Diffstat (limited to 'src')
-rw-r--r-- | src/modules/m_httpd.cpp | 2 |
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 |