summaryrefslogtreecommitdiffstats
path: root/ScreensPanel.c
diff options
context:
space:
mode:
authorSohaib Mohamed <sohaib.amhmd@gmail.com>2021-10-26 14:26:45 +0200
committerNathan Scott <nathans@redhat.com>2021-12-07 17:04:49 +1100
commit4ef5e4296ed183a2e1cc75925ea813467634c558 (patch)
tree9acbe0900b9d3c0cc08db58679e8bae904b5cb7f /ScreensPanel.c
parentba3a1df8069ca6aa858ed2c79ad9ace63883b70b (diff)
fix CI issue
Signed-off-by: Sohaib Mohamed <sohaib.amhmd@gmail.com>
Diffstat (limited to 'ScreensPanel.c')
-rw-r--r--ScreensPanel.c2
1 files changed, 1 insertions, 1 deletions
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);

© 2014-2024 Faster IT GmbH | imprint | privacy policy