projects
/
bison.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d9d363b
)
(prepare): Use xstrdup to convert char const * to char *, to avoid GCC
author
Paul Eggert
<eggert@cs.ucla.edu>
Sun, 20 Oct 2002 06:01:07 +0000
(06:01 +0000)
committer
Paul Eggert
<eggert@cs.ucla.edu>
Sun, 20 Oct 2002 06:01:07 +0000
(06:01 +0000)
warning.
src/output.c
patch
|
blob
|
blame
|
history
diff --git
a/src/output.c
b/src/output.c
index 6eb69ed54ae4c5c35b29430d13e53aa57f6cd6e2..658860edd6b13c19b502783797d13971c45e1ae4 100644
(file)
--- a/
src/output.c
+++ b/
src/output.c
@@
-306,9
+306,9
@@
prepare_states (void)
-/*---------------------------------
-
.
-| Output the user actions to O
O
UT. |
-`---------------------------------
-
*/
+/*---------------------------------.
+| Output the user actions to OUT. |
+`---------------------------------*/
static void
user_actions_output (FILE *out)
@@
-620,7
+620,7
@@
prepare (void)
}
/* Parse the skeleton file and output the needed parsers. */
- muscle_insert ("skeleton",
skeleton
);
+ muscle_insert ("skeleton",
xstrdup (skeleton)
);
}