diff options
author | rubenwardy <rw@rubenwardy.com> | 2022-07-30 12:51:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-30 12:51:23 +0100 |
commit | a8711158896d993e23d823f41ab086c3915c7d4e (patch) | |
tree | 4883ab0310ec344883b8042dea3195cd73717c2e /src/script | |
parent | 6a269d58ef28be6428a5fb62c0eb966fc1ff5883 (diff) | |
download | minetest-a8711158896d993e23d823f41ab086c3915c7d4e.tar.gz minetest-a8711158896d993e23d823f41ab086c3915c7d4e.tar.bz2 minetest-a8711158896d993e23d823f41ab086c3915c7d4e.zip |
Fix some warnings (#12615)
Diffstat (limited to 'src/script')
-rw-r--r-- | src/script/common/c_packer.cpp | 2 | ||||
-rw-r--r-- | src/script/lua_api/l_particleparams.h | 9 |
2 files changed, 7 insertions, 4 deletions
diff --git a/src/script/common/c_packer.cpp b/src/script/common/c_packer.cpp index ede00c758..597f5e447 100644 --- a/src/script/common/c_packer.cpp +++ b/src/script/common/c_packer.cpp @@ -568,7 +568,7 @@ void script_dump_packed(const PackedValue *val) printf("table(%d, %d)", i.uidata1, i.uidata2); break; case LUA_TFUNCTION: - printf("function(%d byte)", i.sdata.size()); + printf("function(%lu byte)", i.sdata.size()); break; case LUA_TUSERDATA: printf("userdata %s %p", i.sdata.c_str(), i.ptrdata); diff --git a/src/script/lua_api/l_particleparams.h b/src/script/lua_api/l_particleparams.h index 4fefc5e3a..03f11c07f 100644 --- a/src/script/lua_api/l_particleparams.h +++ b/src/script/lua_api/l_particleparams.h @@ -226,15 +226,18 @@ namespace LuaParticleParams // get the effect settings lua_getfield(L, -1, "style"); - lua_isnil(L,-1) || (readLuaValue(L, field.style), true); + if (!lua_isnil(L,-1)) + readLuaValue(L, field.style); lua_pop(L, 1); lua_getfield(L, -1, "reps"); - lua_isnil(L,-1) || (readLuaValue(L, field.reps), true); + if (!lua_isnil(L,-1)) + readLuaValue(L, field.reps); lua_pop(L, 1); lua_getfield(L, -1, "start"); - lua_isnil(L,-1) || (readLuaValue(L, field.beginning), true); + if (!lua_isnil(L,-1)) + readLuaValue(L, field.beginning); lua_pop(L, 1); goto done; |