diff options
author | Martin Sebor <msebor@redhat.com> | 2017-01-16 17:08:42 +0000 |
---|---|---|
committer | Martin Sebor <msebor@gcc.gnu.org> | 2017-01-16 10:08:42 -0700 |
commit | 1a413677093aca39a9a51c40bdead14d9a06593e (patch) | |
tree | c6100375c51186abf4157ff32918e1b484ed4ba5 /gcc/gimple-ssa-sprintf.c | |
parent | ce12ee9e68f31441473022a8af5e7cfa2898c8e3 (diff) | |
download | gcc-1a413677093aca39a9a51c40bdead14d9a06593e.zip gcc-1a413677093aca39a9a51c40bdead14d9a06593e.tar.gz gcc-1a413677093aca39a9a51c40bdead14d9a06593e.tar.bz2 |
gimple-ssa-sprintf.c (format_directive): Correct a typo in a warning message.
gcc/ChangeLog:
* gimple-ssa-sprintf.c (format_directive): Correct a typo in a warning
message.
From-SVN: r244500
Diffstat (limited to 'gcc/gimple-ssa-sprintf.c')
-rw-r--r-- | gcc/gimple-ssa-sprintf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/gimple-ssa-sprintf.c b/gcc/gimple-ssa-sprintf.c index e6a6a80c..262857c 100644 --- a/gcc/gimple-ssa-sprintf.c +++ b/gcc/gimple-ssa-sprintf.c @@ -2049,7 +2049,8 @@ format_directive (const pass_sprintf_length::call_info &info, const char* fmtstr = (info.bounded ? G_("%<%.*s%> directive output may be truncated " - "writing %wu or more bytes a region of size %wu") + "writing %wu or more bytes into a region " + "of size %wu") : G_("%<%.*s%> directive writing %wu or more bytes " "into a region of size %wu")); warned = fmtwarn (dirloc, pargrange, NULL, |