From 4ef5e4296ed183a2e1cc75925ea813467634c558 Mon Sep 17 00:00:00 2001 From: Sohaib Mohamed Date: Tue, 26 Oct 2021 14:26:45 +0200 Subject: [PATCH] fix CI issue Signed-off-by: Sohaib Mohamed --- ScreensPanel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ScreensPanel.c b/ScreensPanel.c index 3eacacd6..70e517c3 100644 --- a/ScreensPanel.c +++ b/ScreensPanel.c @@ -46,7 +46,7 @@ static HandlerResult ScreensPanel_eventHandlerRenaming(Panel* super, int ch) { if (ch >= 32 && ch < 127 && ch != 61) { if (this->cursor < SCREEN_NAME_LEN - 1) { - this->buffer[this->cursor] = ch; + this->buffer[this->cursor] = (char)ch; this->cursor++; super->selectedLen = strlen(this->buffer); Panel_setCursorToSelection(super);