From: Wolfgang Bangerth Date: Fri, 2 May 2003 13:34:52 +0000 (-0600) Subject: Clarify the comment before the abort we hit when a translated string contains invalid... X-Git-Tag: releases/gcc-3.4.0~6871 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5ca5a6554e73c0c72d92751cf0f391912aef97b5;p=thirdparty%2Fgcc.git Clarify the comment before the abort we hit when a translated string contains invalid formats. From-SVN: r66381 --- diff --git a/gcc/diagnostic.c b/gcc/diagnostic.c index 98c3bf0032cc..5f3a6d0da105 100644 --- a/gcc/diagnostic.c +++ b/gcc/diagnostic.c @@ -607,7 +607,9 @@ output_format (buffer, text) || !(*buffer->format_decoder) (buffer, text)) { /* Hmmm. The front-end failed to install a format translator - but called us with an unrecognized format. Sorry. */ + but called us with an unrecognized format. Or, maybe, the + translated string just contains an invalid format, or + has formats in the wrong order. Sorry. */ abort (); } }