diff options
| author | Mitja Felicijan <mitja.felicijan@gmail.com> | 2025-08-06 12:05:01 +0200 |
|---|---|---|
| committer | Mitja Felicijan <mitja.felicijan@gmail.com> | 2025-08-06 12:05:01 +0200 |
| commit | a67a1ff9c0eb2331b7356a6ed3d60cc9416efc0c (patch) | |
| tree | f790e789a348e0fa95ab3605c898546001078964 | |
| parent | d2c6810f16fd4227e8a74e8590f82f1f50df3a98 (diff) | |
| download | bidi-a67a1ff9c0eb2331b7356a6ed3d60cc9416efc0c.tar.gz | |
Fix style consistency
| -rw-r--r-- | main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |
