From 4b67529df25af37938ab90448e2ad9970760726b Mon Sep 17 00:00:00 2001 From: Tin Date: Wed, 8 Nov 2023 04:37:21 +0100 Subject: [PATCH] Remove uint to make MacOS happy Signed-off-by: Tin --- src/mouse-events.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mouse-events.cc b/src/mouse-events.cc index f3daf8cf5..0f75b97db 100644 --- a/src/mouse-events.cc +++ b/src/mouse-events.cc @@ -41,7 +41,7 @@ void push_table_value(lua_State *L, std::string key, int value) { 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_pushinteger(L, value); lua_settable(L, -3);