diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2021-05-03 06:39:17 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2021-05-03 06:39:17 +0100 |
commit | 40467726e3a985f0d7c064c6dcf7121f3266ab70 (patch) | |
tree | 920705501106dd08f667d65bdda0699795f9451e /tty-term.c | |
parent | 2e7ec8c0b91dc51e6e22b2f55cc4511610044673 (diff) | |
download | rtmux-40467726e3a985f0d7c064c6dcf7121f3266ab70.tar.gz rtmux-40467726e3a985f0d7c064c6dcf7121f3266ab70.tar.bz2 rtmux-40467726e3a985f0d7c064c6dcf7121f3266ab70.zip |
Fix warnings, from Jan Tache in GitHub issue 2692.
Diffstat (limited to 'tty-term.c')
-rw-r--r-- | tty-term.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -697,7 +697,7 @@ tty_term_read_list(const char *name, int fd, char ***caps, u_int *ncaps, ent = &tty_term_codes[i]; switch (ent->type) { case TTYCODE_NONE: - break; + continue; case TTYCODE_STRING: s = tigetstr((char *)ent->name); if (s == NULL || s == (char *)-1) |