Skip to content

Commit

Permalink
Fix critical error in make_symbol()
Browse files Browse the repository at this point in the history
  • Loading branch information
lazear authored Jan 18, 2017
1 parent 9933abb commit 6d5dd82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scheme/scheme.c
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ struct object* make_symbol(char* s) {
ret->type = SYMBOL;
ret->string = strdup(s);
ht_insert(ret);
} else
}
return ret;
}

Expand Down

0 comments on commit 6d5dd82

Please sign in to comment.