minor cleanup

This commit is contained in:
Simon Forman 2023-02-02 16:13:15 -08:00
parent a2a18a1d05
commit 8dcaee342d
1 changed files with 1 additions and 1 deletions

View File

@ -183,7 +183,7 @@ struct list_node*
make_non_list_node(char *text, size_t size)
{
struct list_node *node;
char * sym;
char *sym;
sym = GC_malloc(size + 1); /* one more for the zero, right? */
strncat(sym, text, size);