From 3c1fdbcc844a55f94dde41591f487ded73eab012 Mon Sep 17 00:00:00 2001 From: Thijs Date: Thu, 6 Feb 2025 20:57:34 +0100 Subject: fix(terminal): warning unused variable --- src/term.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/term.c b/src/term.c index 3a30d2b..8c2b87a 100644 --- a/src/term.c +++ b/src/term.c @@ -589,7 +589,7 @@ static int lst_tcsetattr(lua_State *L) { #ifndef _WIN32 struct termios t; - int r, i; + int r; int fd = get_console_handle(L); // first is the console handle int act = luaL_checkinteger(L, 2); // second is the action to take -- cgit v1.2.3-55-g6feb