From a67a1ff9c0eb2331b7356a6ed3d60cc9416efc0c Mon Sep 17 00:00:00 2001 From: Mitja Felicijan Date: Wed, 6 Aug 2025 12:05:01 +0200 Subject: Fix style consistency --- main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'main.c') diff --git a/main.c b/main.c index 6fee982..083a2d9 100644 --- a/main.c +++ b/main.c @@ -26,7 +26,7 @@ static int lua_getfield_int_opt(lua_State *L, int index, const char *key, int de return val; } -static int load_embedded_module(lua_State *L, const char* module_code, size_t code_len, const char* module_name) { +static int load_embedded_module(lua_State *L, const char *module_code, size_t code_len, const char *module_name) { if (luaL_loadbuffer(L, module_code, code_len, module_name) || lua_pcall(L, 0, 1, 0)) { fprintf(stderr, "Error loading %s: %s\n", module_name, lua_tostring(L, -1)); return 0; -- cgit v1.2.3