aboutsummaryrefslogtreecommitdiff
path: root/llimits.h
diff options
context:
space:
mode:
Diffstat (limited to 'llimits.h')
-rw-r--r--llimits.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/llimits.h b/llimits.h
index d6866d7c..a76c13ed 100644
--- a/llimits.h
+++ b/llimits.h
@@ -355,7 +355,7 @@ typedef l_uint32 Instruction;
355#else 355#else
356/* realloc stack keeping its size */ 356/* realloc stack keeping its size */
357#define condmovestack(L,pre,pos) \ 357#define condmovestack(L,pre,pos) \
358 { int sz_ = (L)->stacksize; pre; luaD_reallocstack((L), sz_, 0); pos; } 358 { int sz_ = stacksize(L); pre; luaD_reallocstack((L), sz_, 0); pos; }
359#endif 359#endif
360 360
361#if !defined(HARDMEMTESTS) 361#if !defined(HARDMEMTESTS)