1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-27 01:25:34 +00:00

LUA: use long instead of int with OPT_LONG.

(cherry picked from commit bd38ed5b17)
This commit is contained in:
Laurent MONIN 2006-06-26 17:55:42 +02:00 committed by Kalle Olavi Niemitalo
parent e4894d0414
commit 9dab353f15

View File

@ -508,13 +508,15 @@ l_set_option(LS)
option_types[opt->type].set(opt, (unsigned char *) (&value));
break;
}
case OPT_INT:
{
int value = lua_tonumber(S, 2);
option_types[opt->type].set(opt, (unsigned char *) (&value));
break;
}
case OPT_LONG:
{
int value;
value = lua_tonumber(S, 2);
long value = lua_tonumber(S, 2);
option_types[opt->type].set(opt, (unsigned char *) (&value));
break;
}