From 9cda1ae823a65c059f55688fc82ce2c43866dc26 Mon Sep 17 00:00:00 2001 From: ph10 Date: Sat, 21 Feb 2015 17:26:24 +0000 Subject: [PATCH] Two more 32-bit warnings fixed. --- src/pcre2test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pcre2test.c b/src/pcre2test.c index 530614e..2c3bc71 100644 --- a/src/pcre2test.c +++ b/src/pcre2test.c @@ -5770,7 +5770,7 @@ else for (gmatched = 0;; gmatched++) if (start > ulen || end > ulen) { fprintf(outfile, "ERROR: bad value(s) for offset(s): 0x%lx 0x%lx\n", - start, end); + (unsigned long int)start, (unsigned long int)end); continue; }