]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Concatenate one of the fprintf calls in the previous change.
authorKaveh Ghazi <ghazi@gcc.gnu.org>
Wed, 21 May 2003 00:47:44 +0000 (00:47 +0000)
committerKaveh Ghazi <ghazi@gcc.gnu.org>
Wed, 21 May 2003 00:47:44 +0000 (00:47 +0000)
From-SVN: r67050

gcc/genautomata.c

index 9015f8c5452fbf778672977ab39265299548a824..e72b52c7f04e42b233a1227532f56f47c28f09e4 100644 (file)
@@ -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");
         }