summaryrefslogtreecommitdiff
path: root/pcre_printint.c
diff options
context:
space:
mode:
Diffstat (limited to 'pcre_printint.c')
-rw-r--r--pcre_printint.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pcre_printint.c b/pcre_printint.c
index 7c29fc0..7d8f62d 100644
--- a/pcre_printint.c
+++ b/pcre_printint.c
@@ -478,7 +478,7 @@ for(;;)
if (PRINTABLE(c)) fprintf(f, " %s [^%c]", flag, c);
else if (utf || c > 0xff)
fprintf(f, " %s [^\\x{%02x}]", flag, c);
- else
+ else
fprintf(f, " %s [^\\x%02x]", flag, c);
break;