]> granicus.if.org Git - apache/commitdiff
* modules/filters/mod_proxy_html.c, modules/filters/mod_xml2enc.c:
authorJoe Orton <jorton@apache.org>
Tue, 6 Aug 2019 07:54:24 +0000 (07:54 +0000)
committerJoe Orton <jorton@apache.org>
Tue, 6 Aug 2019 07:54:24 +0000 (07:54 +0000)
  Fix gcc 9 warnings in code attempting to reduce gcc warnings.
  (should have used expat...)

mod_xml2enc.c:26:28: warning: "/*" within comment [-Wcomment]
   26 | /* libxml2 includes unicode/*.h files which uses C++ comments */
      |
mod_proxy_html.c:32:28: warning: "/*" within comment [-Wcomment]
   32 | /* libxml2 includes unicode/*.h files which uses C++ comments */
      |

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1864464 13f79535-47bb-0310-9956-ffa450edef68

modules/filters/mod_proxy_html.c
modules/filters/mod_xml2enc.c

index 2c55d1d6099f09f7f88a2290cd763e871bb89cd9..0151bf9dd0f3218f87ba51157c6afa704ff9c703 100644 (file)
@@ -29,7 +29,7 @@
 #define VERBOSEB(x) if (verbose) {x}
 #endif
 
-/* libxml2 includes unicode/*.h files which uses C++ comments */
+/* libxml2 includes unicode/[...].h files which uses C++ comments */
 #if defined(__GNUC__)
 #if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6)
 #pragma GCC diagnostic push
index 7a0083c23783a9f0dc10846646defe3c923de5b3..aa1551b18db9d47b051d927c9105309020334ae9 100644 (file)
@@ -23,7 +23,7 @@
 
 #include <ctype.h>
 
-/* libxml2 includes unicode/*.h files which uses C++ comments */
+/* libxml2 includes unicode/[...].h files which uses C++ comments */
 #if defined(__GNUC__)
 #if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6)
 #pragma GCC diagnostic push