From 8edbf57fb8e3c20aac9560b7e4cce7583d14ebf6 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Tue, 20 Sep 2016 13:37:45 -0300 Subject: [PATCH] detail (ANSI C does not accept empty arguments to macros) --- ldo.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ldo.c b/ldo.c index cc5be57b..5080d29e 100644 --- a/ldo.c +++ b/ldo.c @@ -1,5 +1,5 @@ /* -** $Id: ldo.c,v 2.153 2016/08/01 19:51:24 roberto Exp roberto $ +** $Id: ldo.c,v 2.155 2016/09/08 16:36:26 roberto Exp roberto $ ** Stack and Call structure of Lua ** See Copyright Notice in lua.h */ @@ -232,8 +232,8 @@ void luaD_shrinkstack (lua_State *L) { if (inuse <= (LUAI_MAXSTACK - EXTRA_STACK) && goodsize < L->stacksize) luaD_reallocstack(L, goodsize); - else - condmovestack(L,,); /* don't change stack (change only for debugging) */ + else /* don't change stack */ + condmovestack(L,{},{}); /* (change only for debugging) */ }