Revision: 845
http://www.exim.org/viewvc/pcre2?view=rev&revision=845
Author: ph10
Date: 2017-07-21 09:41:21 +0100 (Fri, 21 Jul 2017)
Log Message:
-----------
Use %z format to avoid compiler warning.
Modified Paths:
--------------
code/trunk/src/pcre2test.c
Modified: code/trunk/src/pcre2test.c
===================================================================
--- code/trunk/src/pcre2test.c 2017-07-21 08:37:48 UTC (rev 844)
+++ code/trunk/src/pcre2test.c 2017-07-21 08:41:21 UTC (rev 845)
@@ -5466,7 +5466,7 @@
if (rc != 0)
{
- fprintf(outfile, "** Pattern conversion error at offset %lu: ",
+ fprintf(outfile, "** Pattern conversion error at offset %zu: ",
converted_length);
convert_return = print_error_message(rc, "", "\n")? PR_SKIP:PR_ABEND;
}