Removed redundant qualifier

Removes compiler warning C4114
master
mborland 2013-11-08 22:12:20 -05:00 committed by madmaxoft
parent 54fa4db793
commit d2c530ec33
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ TOLUA_API void tolua_error (lua_State* L, const char* msg, tolua_Error* err)
}
/* the equivalent of lua_is* for usertable */
static int lua_isusertable (lua_State* L, int lo, const const char* type)
static int lua_isusertable (lua_State* L, int lo, const char* type)
{
int r = 0;
if (lo < 0) lo = lua_gettop(L)+lo+1;