OSDN Git Service

minor cleanup
authorSimon Forman <sforman@hushmail.com>
Fri, 3 Feb 2023 00:13:15 +0000 (16:13 -0800)
committerSimon Forman <sforman@hushmail.com>
Fri, 3 Feb 2023 00:13:15 +0000 (16:13 -0800)
implementations/C/joy.c

index 21a2b1a..62a8b82 100644 (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);