aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Nehab <diego.nehab@gmail.com>2018-08-06 13:15:58 -0300
committerGitHub <noreply@github.com>2018-08-06 13:15:58 -0300
commit5813cd05054599b0409480d3214f1827c2360467 (patch)
tree89dfda9b116249fd1b2855c2cc5f542dacd05416
parent4df569e9f867432f25f0bfbfa56b0962feb3326e (diff)
parent9b82c7871d8d9a8561812d5c2d5a67e151d8fcb6 (diff)
downloadluasocket-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.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mime.c b/src/mime.c
index ed44104..db356fc 100644
--- a/src/mime.c
+++ b/src/mime.c
@@ -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 }