diff options
author | burnus <burnus@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-11-23 20:35:14 +0000 |
---|---|---|
committer | burnus <burnus@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-11-23 20:35:14 +0000 |
commit | 223c38aeca1577d3893e4b129662b6c25687cac5 (patch) | |
tree | e6a300ad21ef0455afb6d27a262aa6b935a0be25 /gcc/fortran/error.c | |
parent | 638664b808240543c311a01e63033fa867b8ef62 (diff) |
2014-11-23 Tobias Burnus <burnus@net-b.de>
* error.c (gfc_diagnostic_build_prefix): Correct coloring
of the colon of the prefix.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@217986 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/fortran/error.c')
-rw-r--r-- | gcc/fortran/error.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/fortran/error.c b/gcc/fortran/error.c index 3a508fa693e5..0f85b496ecf8 100644 --- a/gcc/fortran/error.c +++ b/gcc/fortran/error.c @@ -1021,7 +1021,7 @@ gfc_diagnostic_build_prefix (diagnostic_context *context, diagnostic_kind_color[diagnostic->kind]); text_ce = colorize_stop (pp_show_color (pp)); } - return build_message_string ("%s%s%s: ", text_cs, text, text_ce); + return build_message_string ("%s%s:%s ", text_cs, text, text_ce); } /* Return a malloc'd string describing a location. The caller is |