From 2c56e0f2171d68ff13c4a510feffd6bbb52d6381 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Tue, 26 Jul 2016 11:18:33 +0100 Subject: [PATCH] int -> const int --- miniexpect.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, -- 1.8.3.1