From: Richard W.M. Jones Date: Tue, 26 Jul 2016 10:18:33 +0000 (+0100) Subject: int -> const int X-Git-Tag: v1.1~7 X-Git-Url: http://git.annexia.org/?a=commitdiff_plain;h=2c56e0f2171d68ff13c4a510feffd6bbb52d6381;p=miniexpect.git int -> const int --- diff --git a/miniexpect.c b/miniexpect.c index caf498d..d5a7c6e 100644 --- a/miniexpect.c +++ b/miniexpect.c @@ -345,7 +345,7 @@ mexp_expect (mexp_h *h, const mexp_regexp *regexps, int *ovector, int ovecsize) assert (h->buffer != NULL); for (i = 0; regexps[i].r > 0; ++i) { - int options = regexps[i].options | PCRE_PARTIAL_SOFT; + const int options = regexps[i].options | PCRE_PARTIAL_SOFT; r = pcre_exec (regexps[i].re, regexps[i].extra, h->buffer, (int)h->len, 0,