mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-12-26 04:17:33 +00:00
Remove uint to make MacOS happy
Signed-off-by: Tin <tin.svagelj@live.com>
This commit is contained in:
parent
544a9060b8
commit
b5652006ef
@ -41,7 +41,7 @@ void push_table_value(lua_State *L, std::string key, int value) {
|
|||||||
lua_settable(L, -3);
|
lua_settable(L, -3);
|
||||||
}
|
}
|
||||||
|
|
||||||
void push_table_value(lua_State *L, std::string key, uint value) {
|
void push_table_value(lua_State *L, std::string key, uint32_t value) {
|
||||||
lua_pushstring(L, key.c_str());
|
lua_pushstring(L, key.c_str());
|
||||||
lua_pushinteger(L, value);
|
lua_pushinteger(L, value);
|
||||||
lua_settable(L, -3);
|
lua_settable(L, -3);
|
||||||
|
Loading…
Reference in New Issue
Block a user