From: Kaveh Ghazi Date: Wed, 21 May 2003 00:47:44 +0000 (+0000) Subject: Concatenate one of the fprintf calls in the previous change. X-Git-Tag: releases/gcc-3.4.0~6436 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c1625e69f775b74a51105b936d11aa2a0ca580fc;p=thirdparty%2Fgcc.git Concatenate one of the fprintf calls in the previous change. From-SVN: r67050 --- diff --git a/gcc/genautomata.c b/gcc/genautomata.c index 9015f8c5452f..e72b52c7f04e 100644 --- a/gcc/genautomata.c +++ b/gcc/genautomata.c @@ -9358,9 +9358,8 @@ output_description () decl = description->decls [i]; if (decl->mode == dm_reserv) { - fprintf (output_description_file, "reservation "); - fprintf (output_description_file, "%s", DECL_RESERV (decl)->name); - fprintf (output_description_file, ": "); + fprintf (output_description_file, "reservation %s: ", + DECL_RESERV (decl)->name); output_regexp (DECL_RESERV (decl)->regexp); fprintf (output_description_file, "\n"); }