aboutsummaryrefslogtreecommitdiff
path: root/gcc/gimple-ssa-sprintf.c
diff options
context:
space:
mode:
authorMartin Sebor <msebor@redhat.com>2017-08-14 16:47:40 +0000
committerMartin Sebor <msebor@gcc.gnu.org>2017-08-14 10:47:40 -0600
commit3a66f91348d7d83fd211e664379940a60c462a21 (patch)
tree508e3d0af1bd66e305ccabc9b1546d864af6aaff /gcc/gimple-ssa-sprintf.c
parent2912db04c1091e5b6a0fd8a464d9ec8a2c5a1fb6 (diff)
downloadgcc-3a66f91348d7d83fd211e664379940a60c462a21.zip
gcc-3a66f91348d7d83fd211e664379940a60c462a21.tar.gz
gcc-3a66f91348d7d83fd211e664379940a60c462a21.tar.bz2
PR translation/79998 - typo in diagnostic "specified bound %wu"
gcc/ChangeLog: * gimple-ssa-sprintf.c (pass_sprintf_length::handle_gimple_call): Remove a stray space. From-SVN: r251096
Diffstat (limited to 'gcc/gimple-ssa-sprintf.c')
-rw-r--r--gcc/gimple-ssa-sprintf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/gimple-ssa-sprintf.c b/gcc/gimple-ssa-sprintf.c
index 644cf7e..519e996 100644
--- a/gcc/gimple-ssa-sprintf.c
+++ b/gcc/gimple-ssa-sprintf.c
@@ -3868,7 +3868,7 @@ pass_sprintf_length::handle_gimple_call (gimple_stmt_iterator *gsi)
}
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)