mirror of
https://github.com/kovidgoyal/kitty
synced 2026-06-11 02:59:40 +02:00
Fix compiler warning
This commit is contained in:
@@ -382,7 +382,7 @@ encode_key(const KeyEvent *ev, char *output) {
|
||||
|
||||
static inline bool
|
||||
is_ascii_control_char(char c) {
|
||||
return (0 <= c && c <= 31) || c == 127;
|
||||
return c <= 31 || c == 127;
|
||||
}
|
||||
|
||||
int
|
||||
|
||||
Reference in New Issue
Block a user