Compare commits

..

1 Commits

Author SHA1 Message Date
7d392e38ca fix(ui): address PR review comments
Some checks failed
CI Code / Check spelling (pull_request) Successful in 19s
CI Code / Check coding style (pull_request) Successful in 32s
CI Code / Code Coverage (pull_request) Failing after 36s
CI Code / Linux (arch) (pull_request) Failing after 55s
CI Code / Linux (debian) (pull_request) Failing after 1m11s
CI Code / Linux (ubuntu) (pull_request) Failing after 1m33s
- inputwin.c: improve MB_CUR_MAX error message with actionable advice
- inputwin.c: add log_error when input window pad allocation fails
- statusbar.c: add log_warning for invalid cols values
- window.c: simplify _check_subwin_width using CLAMP macro
2026-02-06 13:29:36 +03:00
2 changed files with 0 additions and 4 deletions

View File

@@ -77,8 +77,6 @@ _db_teardown(const char* ctx)
}
g_chatlog_database = NULL;
}
// Safe to call unconditionally; no-op if not initialized.
// See: https://www.sqlite.org/c3ref/initialize.html
sqlite3_shutdown();
}

View File

@@ -40,8 +40,6 @@
#include <string.h>
#include <stdlib.h>
#include "log.h"
#ifdef HAVE_NCURSESW_NCURSES_H
#include <ncursesw/ncurses.h>
#elif HAVE_NCURSES_H