aboutsummaryrefslogtreecommitdiff
path: root/ast.c
diff options
context:
space:
mode:
Diffstat (limited to 'ast.c')
-rw-r--r--ast.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ast.c b/ast.c
index 959addf..627a85a 100644
--- a/ast.c
+++ b/ast.c
@@ -29,7 +29,7 @@ CNode *cnode_create_ast(CNode *wrapped) {
return wrapped;
}
-CNode *cnode_create_nop() {
+CNode *cnode_create_nop(void) {
CNode *nop = NEW_CNODE;
nop->type = NOP;
nop->next = nop->chd = NULL;