diff options
Diffstat (limited to 'lib/regex.c')
-rw-r--r-- | lib/regex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/regex.c b/lib/regex.c index 04e92a8bd..e02f0fefb 100644 --- a/lib/regex.c +++ b/lib/regex.c @@ -781,7 +781,7 @@ print_compiled_pattern (bufp) unsigned char *buffer = bufp->buffer; print_partial_compiled_pattern (buffer, buffer + bufp->used); - printf ("%ld bytes used/%ld bytes allocated.\n", bufp->used, bufp->allocated); + printf ("%d bytes used/%d bytes allocated.\n", bufp->used, bufp->allocated); if (bufp->fastmap_accurate && bufp->fastmap) { |