Skip to content

Commit 5b2d4f6

Browse files
author
Aaron Fischer
committed
Fix the error method -- missing type
1 parent 690a5d4 commit 5b2d4f6

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
@@ -2610,7 +2610,7 @@ jmp_buf lisp_break = {0};
26102610

26112611
void error(char* msg) {
26122612
jmp_buf empty = {0};
2613-
static error_level = 0;
2613+
static int error_level = 0;
26142614

26152615
if (error_level == 0) {
26162616
error_level++;

0 commit comments

Comments
 (0)