summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Göttsche <cgzones@googlemail.com>2021-01-05 23:45:15 +0100
committerChristian Göttsche <cgzones@googlemail.com>2021-01-06 16:42:54 +0100
commit7ff654f2df3a49c6b46e19b95533da531f71be5b (patch)
treecea6b79828ab5f726079c4952a20bb041daae788
parent7386c6fed03737be11f93a10fcc66296f97c7920 (diff)
Drop useless double parenthesis
-rw-r--r--IncSet.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/IncSet.c b/IncSet.c
index 5b2fe728..aba5e750 100644
--- a/IncSet.c
+++ b/IncSet.c
@@ -159,7 +159,7 @@ bool IncSet_handleKey(IncSet* this, int ch, Panel* panel, IncMode_GetPanelValue
}
}
}
- } else if ((ch == KEY_BACKSPACE || ch == 127)) {
+ } else if (ch == KEY_BACKSPACE || ch == 127) {
if (mode->index > 0) {
mode->index--;
mode->buffer[mode->index] = 0;

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