Pointer variable declaration style change.

This commit is contained in:
jussi
2024-02-18 19:46:50 +02:00
parent 9b27daefc2
commit 836c9d1d00
33 changed files with 2476 additions and 2476 deletions

View File

@@ -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 );