summaryrefslogtreecommitdiff
path: root/pcre/pcre_exec.c
diff options
context:
space:
mode:
authorMonty <monty@mariadb.org>2019-03-26 17:36:20 +0200
committerMonty <monty@mariadb.org>2019-04-01 19:47:24 +0300
commite3bffd579f4a1bf8e08dc714971729faeb371f63 (patch)
tree4d069a019de038e684a8c3ad4a9d86b4b871b1e6 /pcre/pcre_exec.c
parentb5615eff0d00cfb4c60b9d1bf67094da7c2258a6 (diff)
downloadmariadb-git-e3bffd579f4a1bf8e08dc714971729faeb371f63.tar.gz
Removed some warnings from -Wimplicit-fallthrough= with build scripts
Diffstat (limited to 'pcre/pcre_exec.c')
-rw-r--r--pcre/pcre_exec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pcre/pcre_exec.c b/pcre/pcre_exec.c
index 93256d32455..88a9a79e489 100644
--- a/pcre/pcre_exec.c
+++ b/pcre/pcre_exec.c
@@ -2086,7 +2086,7 @@ for (;;)
case OP_CIRC:
if (md->notbol && eptr == md->start_subject) RRETURN(MATCH_NOMATCH);
- /* Start of subject assertion */
+ /* Fall through. Start of subject assertion */
case OP_SOD:
if (eptr != md->start_subject) RRETURN(MATCH_NOMATCH);