Skip to content

Commit

Permalink
Remove uint to make MacOS happy
Browse files Browse the repository at this point in the history
Signed-off-by: Tin <[email protected]>
  • Loading branch information
Caellian committed Nov 8, 2023
1 parent be30bf0 commit 4b67529
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mouse-events.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 4b67529

Please sign in to comment.