Skip to content

Commit 57fc9c4

Browse files
committed
Merge pull request #1 from f0086/master
Fix the error method -- missing type
2 parents c62acf5 + 5b2d4f6 commit 57fc9c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lisp.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2622,7 +2622,7 @@ jmp_buf lisp_break = {0};
26222622

26232623
void error(char* msg) {
26242624
jmp_buf empty = {0};
2625-
static error_level = 0;
2625+
static int error_level = 0;
26262626

26272627
if (error_level == 0) {
26282628
error_level++;

0 commit comments

Comments
 (0)