diff options
author | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-08-17 17:34:53 +0000 |
---|---|---|
committer | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-08-17 17:34:53 +0000 |
commit | ed184982c97e01deef01af3d1491ac8b213f0c47 (patch) | |
tree | 21cd72c65589d2a6c5148dad2a7f1ddbec6ae2ee /libcpp/charset.c | |
parent | d4704182ad38f6feadff54ede3a582427d76381f (diff) | |
download | gcc-ed184982c97e01deef01af3d1491ac8b213f0c47.tar.gz |
PR preprocessor/41067:
* charset.c (convert_escape): Add missing ":" to error text.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@150854 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libcpp/charset.c')
-rw-r--r-- | libcpp/charset.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcpp/charset.c b/libcpp/charset.c index f1da4265ddd..b96c646f58e 100644 --- a/libcpp/charset.c +++ b/libcpp/charset.c @@ -1301,7 +1301,7 @@ convert_escape (cpp_reader *pfile, const uchar *from, const uchar *limit, unknown: if (ISGRAPH (c)) cpp_error (pfile, CPP_DL_PEDWARN, - "unknown escape sequence '\\%c'", (int) c); + "unknown escape sequence: '\\%c'", (int) c); else { /* diagnostic.c does not support "%03o". When it does, this |