diff --git a/www/diagnostics.html b/www/diagnostics.html index 2c9c791361..2bb8685b2d 100755 --- a/www/diagnostics.html +++ b/www/diagnostics.html @@ -51,12 +51,6 @@ helps when multiple instances of the same character occur on a line. (We'll revisit this more in following examples.)

-  $ gcc-4.9 -fsyntax-only -Wformat format-strings.c
-  format-strings.c: In function 'void f()':
-  format-strings.c:91:16: warning: field precision specifier '.*' expects a matching 'int' argument [-Wformat=]
-     printf("%.*d");
-                  ^
-  format-strings.c:91:16: warning: format '%d' expects a matching 'int' argument [-Wformat=]
   $ clang -fsyntax-only format-strings.c
   format-strings.c:91:13: warning: '.*' specified field precision is missing a matching 'int' argument
     printf("%.*d");