From c1625e69f775b74a51105b936d11aa2a0ca580fc Mon Sep 17 00:00:00 2001 From: Kaveh Ghazi Date: Wed, 21 May 2003 00:47:44 +0000 Subject: [PATCH] Concatenate one of the fprintf calls in the previous change. From-SVN: r67050 --- gcc/genautomata.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/gcc/genautomata.c b/gcc/genautomata.c index 9015f8c5452..e72b52c7f04 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"); } -- 2.30.2