From 36f4377b4c1c5a4d5981625e6b0c4e9ca7726ab8 Mon Sep 17 00:00:00 2001 From: "jabber.developer2" Date: Sun, 24 May 2026 11:13:39 +0300 Subject: [PATCH] fix(editor): remove duplicate #include "ui/ui.h" editor.c included ui/ui.h twice in a row (lines 25 and 27). Harmless due to the header guard but pure noise. --- src/tools/editor.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/tools/editor.c b/src/tools/editor.c index 5c53e422..a8648307 100644 --- a/src/tools/editor.c +++ b/src/tools/editor.c @@ -24,7 +24,6 @@ #include "ncurses.h" #include "ui/ui.h" #include "xmpp/xmpp.h" -#include "ui/ui.h" typedef struct EditorContext {