diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2020-10-26 13:37:51 +0100 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2020-10-26 13:37:51 +0100 |
commit | 279d010e0fcddbbd0f8ebb456cc1fa253c7cd994 (patch) | |
tree | 453865a67bbecd2e716af4705a17d086bceb60e1 /termo.c | |
parent | 8c4e867760eb20e3cdf997a301c8f8672c01e380 (diff) | |
download | termo-279d010e0fcddbbd0f8ebb456cc1fa253c7cd994.tar.gz termo-279d010e0fcddbbd0f8ebb456cc1fa253c7cd994.tar.xz termo-279d010e0fcddbbd0f8ebb456cc1fa253c7cd994.zip |
Fix a spurious "implicit fallthrough" warning
Diffstat (limited to 'termo.c')
-rw-r--r-- | termo.c | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -906,21 +906,20 @@ peekkey (termo_t *tk, termo_key_t *key, int flags, size_t *nbytep) switch (ret) { + size_t halfsize; case TERMO_RES_KEY: - { #ifdef DEBUG print_key (tk, key); fprintf (stderr, "\n"); #endif // Slide the data down to stop it running away - size_t halfsize = tk->buffsize / 2; + halfsize = tk->buffsize / 2; if (tk->buffstart > halfsize) { memcpy (tk->buffer, tk->buffer + halfsize, halfsize); tk->buffstart -= halfsize; } - // Fallthrough - } + // Fall-through case TERMO_RES_EOF: case TERMO_RES_ERROR: return ret; |