Skip to content

Commit c9cd941

Browse files
committed
fx
1 parent 9c1fc0d commit c9cd941

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

luaa.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -940,17 +940,17 @@ luaA_dofunction_on_error(lua_State *L)
940940
static void
941941
setup_awesome_signals(lua_State *L)
942942
{
943-
int count=0;
944-
#define SETUP_SIGNAL(sig) \
945-
do { \
946-
count++; \
943+
int count = 0;
944+
#define SETUP_SIGNAL(sig) \
945+
do { \
946+
count++; \
947947
} while (0)
948948
#include "unix_signals.h"
949949
#undef SETUP_SIGNAL
950950

951951
lua_getglobal(L, "awesome");
952952
lua_pushstring(L, "unix_signal");
953-
lua_createtable(L,0,count);
953+
lua_createtable(L, 0, count);
954954

955955
#define SETUP_SIGNAL(sig) \
956956
do { \

0 commit comments

Comments
 (0)