diff mbox

[committed] remove stray space from a warning message (PR 79998)

Message ID da2a27a8-5c62-8318-bda1-5c44cf138bb0@gmail.com
State New
Headers show

Commit Message

Martin Sebor Aug. 14, 2017, 4:49 p.m. UTC
The trivial tweak below removes the spurious space pointed out
in bug 79998 - typo in diagnostic "specified bound %wu".  The
patch has been committed in r251096.

Martin
diff mbox

Patch

Index: gcc/gimple-ssa-sprintf.c
===================================================================
--- gcc/gimple-ssa-sprintf.c	(revision 251094)
+++ gcc/gimple-ssa-sprintf.c	(working copy)
@@ -3868,7 +3868,7 @@  pass_sprintf_length::handle_gimple_call (gimple_st
  	    }
  	  else if (dstsize > target_int_max ())
  	    warning_at (gimple_location (info.callstmt), info.warnopt (),
-			"specified bound %wu exceeds %<INT_MAX %>",
+			"specified bound %wu exceeds %<INT_MAX%>",
  			dstsize);
  	}
        else if (TREE_CODE (size) == SSA_NAME)