From: Martin Sebor Date: Mon, 14 Aug 2017 16:47:40 +0000 (+0000) Subject: PR translation/79998 - typo in diagnostic "specified bound %wu" X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3a66f91348d7d83fd211e664379940a60c462a21;p=gcc.git 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 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4c147b06d11..feae522a570 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2017-08-14 Martin Sebor + + PR translation/79998 + * gimple-ssa-sprintf.c (pass_sprintf_length::handle_gimple_call): + Remove a stray space. + 2017-08-14 Uros Bizjak PR target/46091 diff --git a/gcc/gimple-ssa-sprintf.c b/gcc/gimple-ssa-sprintf.c index 644cf7e33b1..519e9966080 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 %", + "specified bound %wu exceeds %", dstsize); } else if (TREE_CODE (size) == SSA_NAME)