Concatenate one of the fprintf calls in the previous change.

From-SVN: r67050
This commit is contained in:
Kaveh Ghazi 2003-05-21 00:47:44 +00:00
parent 16e3196411
commit c1625e69f7
1 changed files with 2 additions and 3 deletions

View 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");
}