Skip to content

Commit

Permalink
detail (ANSI C does not accept empty arguments to macros)
Browse files Browse the repository at this point in the history
  • Loading branch information
roberto-ieru committed Sep 20, 2016
1 parent 7fe1a4c commit 8edbf57
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ldo.c
Original file line number Diff line number Diff line change
@@ -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
*/
Expand Down Expand Up @@ -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) */
}


Expand Down

0 comments on commit 8edbf57

Please sign in to comment.