diff options
Diffstat (limited to 'src/main.c')
| -rw-r--r-- | src/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -19,7 +19,7 @@ inline static void printVersion() { #endif } -int main( int argn, const char **argc ) { +int main( int argn, const char** argc ) { char exePath[ STRING_LEN ] = { '\0' }; bool interpret_mode = false; @@ -50,7 +50,7 @@ int main( int argn, const char **argc ) { if ( interpret_mode ) { stateInitInterpret( argn, argc ); - lua_State *L = state->luaState; + lua_State* L = state->luaState; lua_pushcfunction( L, luaTraceback ); int tracebackidx = lua_gettop( L ); |
