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

[spidermonkey] usnigned char -> char in naviagator.c

This commit is contained in:
Witold Filipczyk 2022-02-25 19:15:01 +01:00
parent b8a35ee7aa
commit e3639745fc

View File

@ -187,7 +187,7 @@ navigator_get_property_userAgent(JSContext *ctx, unsigned int argc, JS::Value *v
if (*optstr && strcmp(optstr, " ")) { if (*optstr && strcmp(optstr, " ")) {
char *ustr, ts[64] = ""; char *ustr, ts[64] = "";
static unsigned char custr[256]; static char custr[256];
/* TODO: Somehow get the terminal in which the /* TODO: Somehow get the terminal in which the
* document is actually being displayed. */ * document is actually being displayed. */
struct terminal *term = get_default_terminal(); struct terminal *term = get_default_terminal();