diff options
author | bloodstalker <thabogre@gmail.com> | 2017-06-25 21:19:44 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2017-06-25 21:19:44 +0000 |
commit | e8c05ec90f2fa39db05bfef6802be74f5acbcd4b (patch) | |
tree | 852bce5a575555695d94c3567398e86114d056bb /bruiser/luadummy.h | |
parent | updated (diff) | |
download | mutator-e8c05ec90f2fa39db05bfef6802be74f5acbcd4b.tar.gz mutator-e8c05ec90f2fa39db05bfef6802be74f5acbcd4b.zip |
silenced a compiler warning
Diffstat (limited to 'bruiser/luadummy.h')
-rw-r--r-- | bruiser/luadummy.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bruiser/luadummy.h b/bruiser/luadummy.h index ed6a939..9abbe9c 100644 --- a/bruiser/luadummy.h +++ b/bruiser/luadummy.h @@ -561,7 +561,7 @@ static int handle_luainit (lua_State *L) { ** Main body of stand-alone interpreter (to be called in protected mode). ** Reads the options and handles them all. */ -static int pmain (lua_State *L) { +static int pmain [[maybe_unused]] (lua_State *L) { int argc = (int)lua_tointeger(L, 1); char **argv = (char **)lua_touserdata(L, 2); int script; |