Revision: 203
http://www.exim.org/viewvc/pcre2?view=rev&revision=203
Author: ph10
Date: 2015-02-21 17:26:24 +0000 (Sat, 21 Feb 2015)
Log Message:
-----------
Two more 32-bit warnings fixed.
Modified Paths:
--------------
code/trunk/src/pcre2test.c
Modified: code/trunk/src/pcre2test.c
===================================================================
--- code/trunk/src/pcre2test.c 2015-02-21 17:25:12 UTC (rev 202)
+++ code/trunk/src/pcre2test.c 2015-02-21 17:26:24 UTC (rev 203)
@@ -5770,7 +5770,7 @@
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;
}