[Fix] I should have taken a career in bug extermination.

This commit is contained in:
Allanis 2013-05-06 21:57:27 +01:00
parent 1c9bc7ed9d
commit f81016feed

View File

@ -17,8 +17,8 @@
#define MISN_DEBUG(str, args...) (fprintf(stdout, "Mission '%s': "str"\n", \
cur_mission->data->name, ## args))
#define MIN_ARGS(n) { \
if(lua_gettop(L) < n) \
#define MIN_ARGS(n) \
if(lua_gettop(L) < n) { \
MISN_DEBUG("[%s] Too few arguments", __func__); \
return 0; \
}