From b5652006efb1c0d98dbfdfd6d6ba99258d61f00e 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 f3daf8cf..0f75b97d 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);