summaryrefslogtreecommitdiff
path: root/pcre_printint.c
diff options
context:
space:
mode:
authorph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2011-12-31 15:19:04 +0000
committerph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2011-12-31 15:19:04 +0000
commit74eb3434599c95a3ee8a52dcd9a5d3a62946dc23 (patch)
tree788a07031b25597cf42d94badf2d9fc2edc9a09f /pcre_printint.c
parent1b855e2c5e3447b1d6ea7d9301988828141ce3c4 (diff)
downloadpcre-74eb3434599c95a3ee8a52dcd9a5d3a62946dc23.tar.gz
Typos in PrepareRelease; include 16-bit in make distcheck; fix RunTest and
RunGrepTest when building in non-source directory; problem in pcretest when no UTF or 16-bit support; other tidies consequent on building a tarball. git-svn-id: svn://vcs.exim.org/pcre/code/trunk@842 2f5784b3-3f2a-0410-8824-cb99058d5e15
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;