mirror of
https://salsa.debian.org/srivasta/make-dfsg.git
synced 2024-12-26 14:00:56 +00:00
* loadapi.c (gmk_eval): Use C90 syntax.
This commit is contained in:
parent
b11bef0bea
commit
9ed452b041
1 changed files with 2 additions and 1 deletions
|
@ -42,10 +42,11 @@ gmk_eval (const char *buffer, const gmk_floc *floc)
|
|||
/* Preserve existing variable buffer context. */
|
||||
char *pbuf;
|
||||
unsigned int plen;
|
||||
char *s;
|
||||
|
||||
install_variable_buffer (&pbuf, &plen);
|
||||
|
||||
char *s = xstrdup (buffer);
|
||||
s = xstrdup (buffer);
|
||||
eval_buffer (s, floc);
|
||||
free (s);
|
||||
|
||||
|
|
Loading…
Reference in a new issue