1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-12-04 14:46:47 -05:00

[string] cast to void

Check for NULL is on other fragments.
This commit is contained in:
Witold Filipczyk 2022-01-09 17:12:31 +01:00
parent fec54a50e9
commit 5aa115f08a

View File

@ -247,7 +247,7 @@ ecmascript_get_interpreter(struct view_state *vs)
return NULL; return NULL;
} }
init_string(&interpreter->code); (void)init_string(&interpreter->code);
return interpreter; return interpreter;
} }