From 42c7f479b2aebdec4fd190ba06097b7c5bca42a9 Mon Sep 17 00:00:00 2001 From: Peter Powell Date: Sat, 9 Mar 2019 09:54:48 +0000 Subject: m_httpd: GCC is __GNUC__ not _GNUC. --- src/modules/m_httpd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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 -- cgit v1.2.3