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

[quikjs] window const char * -> char *

This commit is contained in:
Witold Filipczyk 2022-01-30 14:08:33 +01:00
parent 7f39d36787
commit 59f00b6545

View File

@ -384,7 +384,8 @@ js_window_alert(JSContext *ctx, JSValueConst this_val, int argc, JSValueConst *a
assert(interpreter);
struct view_state *vs;
const char *str, *string;
const char *str;
char *string;
size_t len;
vs = interpreter->vs;