summaryrefslogtreecommitdiff
path: root/identifiers.c
diff options
context:
space:
mode:
Diffstat (limited to 'identifiers.c')
-rw-r--r--identifiers.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/identifiers.c b/identifiers.c
index 6b19d18..6eafc41 100644
--- a/identifiers.c
+++ b/identifiers.c
@@ -56,7 +56,7 @@ static int isident(int c) {
static Identifier ident_new(Identifiers *ids, Identifier parent, unsigned char index_in_parent) {
IdentTree *tree = block_arr_add(&ids->trees);
memset(tree, 0, sizeof *tree); /* use zero value of IdentTree */
-#if NONZERO_NULL_PTRS
+#ifdef NONZERO_NULL_PTRS
tree->parent = NULL;
for (size_t i = 0; i < TREE_NCHILDREN; i++)
tree->children[i] = NULL;