diff options
author | Diego Nehab <diego.nehab@gmail.com> | 2018-08-06 13:15:58 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-06 13:15:58 -0300 |
commit | 5813cd05054599b0409480d3214f1827c2360467 (patch) | |
tree | 89dfda9b116249fd1b2855c2cc5f542dacd05416 | |
parent | 4df569e9f867432f25f0bfbfa56b0962feb3326e (diff) | |
parent | 9b82c7871d8d9a8561812d5c2d5a67e151d8fcb6 (diff) | |
download | luasocket-5813cd05054599b0409480d3214f1827c2360467.tar.gz luasocket-5813cd05054599b0409480d3214f1827c2360467.tar.bz2 luasocket-5813cd05054599b0409480d3214f1827c2360467.zip |
Merge pull request #253 from flyingdutchman23/master
Fix gcc-8.1.0 warning.
-rw-r--r-- | src/mime.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -689,6 +689,7 @@ static size_t dot(int c, size_t state, luaL_Buffer *buffer) | |||
689 | case '.': | 689 | case '.': |
690 | if (state == 2) | 690 | if (state == 2) |
691 | luaL_addchar(buffer, '.'); | 691 | luaL_addchar(buffer, '.'); |
692 | /* Falls through. */ | ||
692 | default: | 693 | default: |
693 | return 0; | 694 | return 0; |
694 | } | 695 | } |