(prepare): Use xstrdup to convert char const * to char *, to avoid GCC

warning.
This commit is contained in:
Paul Eggert
2002-10-20 06:01:07 +00:00
parent d9d363b172
commit bb33f19a4b

View File

@@ -306,9 +306,9 @@ prepare_states (void)
/*----------------------------------.
| Output the user actions to OOUT. |
`----------------------------------*/
/*---------------------------------.
| 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));
}