diff options
author | Monty <monty@mariadb.org> | 2019-03-26 17:36:20 +0200 |
---|---|---|
committer | Monty <monty@mariadb.org> | 2019-04-01 19:47:24 +0300 |
commit | e3bffd579f4a1bf8e08dc714971729faeb371f63 (patch) | |
tree | 4d069a019de038e684a8c3ad4a9d86b4b871b1e6 /pcre/pcre_exec.c | |
parent | b5615eff0d00cfb4c60b9d1bf67094da7c2258a6 (diff) | |
download | mariadb-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.c | 2 |
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); |