util.signal: Moved a variable declaration to the top of a function, for ANSI C compliance.

This commit is contained in:
Waqas Hussain 2010-06-20 04:07:55 +05:00
parent c4f2a6c8b3
commit 1f75bd5099

View file

@ -165,13 +165,13 @@ static struct signal_event *last_event = NULL;
static void sighook(lua_State *L, lua_Debug *ar)
{
struct signal_event *event;
/* restore the old hook */
lua_sethook(L, Hsig, Hmask, Hcount);
lua_pushstring(L, LUA_SIGNAL);
lua_gettable(L, LUA_REGISTRYINDEX);
struct signal_event *event;
while((event = signal_queue))
{
lua_pushnumber(L, event->Nsig);