mirror of
https://github.com/xzeldon/htop.git
synced 2025-04-05 02:47:07 +03:00
Drop useless double parenthesis
This commit is contained in:
parent
7386c6fed0
commit
7ff654f2df
2
IncSet.c
2
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) {
|
if (mode->index > 0) {
|
||||||
mode->index--;
|
mode->index--;
|
||||||
mode->buffer[mode->index] = 0;
|
mode->buffer[mode->index] = 0;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user