From 9cf52972050ed333db88df64f9a2df73fc025049 Mon Sep 17 00:00:00 2001 From: javalsai Date: Tue, 20 Jan 2026 22:29:58 +0100 Subject: [PATCH] fix: building with `-flto=auto` (#102) I need this to finish the AUR packages at #100. It probably also broke the current lidm-git package --- src/ui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui.c b/src/ui.c index d9fca0b..7b8d912 100644 --- a/src/ui.c +++ b/src/ui.c @@ -67,7 +67,7 @@ static void process_sigwinch(int signal) { need_resize = 1; } -inline void draw_bg() { +static inline void draw_bg() { // apply bg color to all screen printf("\x1b[%sm\x1b[2J", g_config->colors.bg); }