mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
util.signal: Moved a variable declaration to the top of a function, for ANSI C compliance.
This commit is contained in:
parent
c4f2a6c8b3
commit
1f75bd5099
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue