diff options
Diffstat (limited to 'src/ast.c')
-rw-r--r-- | src/ast.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -20,7 +20,7 @@ #include <stdlib.h> ast_node_t * -ast_node_new() +ast_node_new(void) { ast_node_t *node = (ast_node_t *)malloc(sizeof(ast_node_t)); if (node == NULL) { |