diff options
Diffstat (limited to 'gcc/cobol/genmath.cc')
-rw-r--r-- | gcc/cobol/genmath.cc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/cobol/genmath.cc b/gcc/cobol/genmath.cc index bf3885b..0a1c12d 100644 --- a/gcc/cobol/genmath.cc +++ b/gcc/cobol/genmath.cc @@ -1383,12 +1383,12 @@ parser_op( struct cbl_refer_t cref, break; } default: - cbl_internal_error( "parser_op() doesn't know how to " - "evaluate \"%s = %s %c %s\"\n", - cref.field->name, - aref.field->name, - op, - bref.field->name); + cbl_internal_error( "%<parser_op()%> doesn%'t know how to " + "evaluate %<%s = %s %c %s%>", + cref.field->name, + aref.field->name, + op, + bref.field->name); break; } } |