Commit c1625e69 by Kaveh Ghazi

Concatenate one of the fprintf calls in the previous change.

From-SVN: r67050
parent 16e31964
......@@ -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");
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment