Skip to content

Commit 9feb8de

Browse files
committed
actual fix for compile
1 parent 9b0989b commit 9feb8de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/jsinteractive.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3023,7 +3023,7 @@ It executes JavaScript code that was pushed to the queue by require("timer").add
30233023
void jsiRunInterruptingJS() {
30243024
uint8_t data[IOEVENT_MAX_LEN];
30253025
memset(data, 0, sizeof(data));
3026-
unsigned int len = sizeof(data)
3026+
unsigned int len;
30273027
if (jshPopIOEventOfType(EV_RUN_INTERRUPT_JS, data, &len))
30283028
jsiOnRunInterruptJSEvent(data, sizeof(data));
30293029
}

0 commit comments

Comments
 (0)