summaryrefslogtreecommitdiffstats
path: root/CommandScreen.c
diff options
context:
space:
mode:
authorBenny Baumann <BenBE@geshi.org>2020-11-01 01:09:51 +0100
committerBenny Baumann <BenBE@geshi.org>2020-11-02 22:15:01 +0100
commit45869513bfebba80cc2ab42e4218f68b34b1e6ac (patch)
treef064631dbff141bf1c945db8cff40b7bb82fd169 /CommandScreen.c
parent61e14d4bb25268593019e6df3eb02264b4ac8e0e (diff)
Embracing branches
Diffstat (limited to 'CommandScreen.c')
-rw-r--r--CommandScreen.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/CommandScreen.c b/CommandScreen.c
index 7997a64a..578b3ae1 100644
--- a/CommandScreen.c
+++ b/CommandScreen.c
@@ -21,7 +21,9 @@ static void CommandScreen_scan(InfoScreen* this) {
int line_offset = 0, last_spc = -1, len;
for (; *p != '\0'; p++, line_offset++) {
line[line_offset] = *p;
- if (*p == ' ') last_spc = line_offset;
+ if (*p == ' ') {
+ last_spc = line_offset;
+ }
if (line_offset == COLS) {
len = (last_spc == -1) ? line_offset : last_spc;

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