mirror of https://github.com/xzeldon/htop.git
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…
Reference in New Issue