diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-05-21 00:47:44 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-05-21 00:47:44 +0000 |
commit | 0da6cf03dfa46b0ff3d61fb76c48827e048946cd (patch) | |
tree | fc851a4772b285e75ed117ad0d10221e363840eb /gcc/genautomata.c | |
parent | f8ed00ce468c84e75145b53495c037c8f8cedbc3 (diff) | |
download | gcc-0da6cf03dfa46b0ff3d61fb76c48827e048946cd.tar.gz |
Concatenate one of the fprintf calls in the previous change.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@67050 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/genautomata.c')
-rw-r--r-- | gcc/genautomata.c | 5 |
1 files 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"); } |