summaryrefslogtreecommitdiff
path: root/util.c
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2003-03-02 13:34:13 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2003-03-02 13:34:13 +0000
commit06e66572fd5541df0d1349cac2b404c3b9e446ee (patch)
tree0930177519678f5a1dd34796e442ca89f1a91c98 /util.c
parent97edce3fcdc8a02187aed95f7b6f4a46eb120a6e (diff)
downloadperl-06e66572fd5541df0d1349cac2b404c3b9e446ee.tar.gz
The -CI cannot be easily tested under UTF-8 locale with
the t/test.pl (the 'stdin' data gets doubly UTF-8-ied). Also other small tweaks in the -C neighbourhood. p4raw-id: //depot/perl@18799
Diffstat (limited to 'util.c')
-rw-r--r--util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util.c b/util.c
index e74fe719c4..e980707c42 100644
--- a/util.c
+++ b/util.c
@@ -4355,7 +4355,7 @@ Perl_parse_unicode_opts(pTHX_ char **popt)
opt = PERL_UNICODE_DEFAULT_FLAGS;
if (opt & ~PERL_UNICODE_ALL_FLAGS)
- Perl_croak(aTHX_ "Unknown Unicode option value 0x%"UVuf,
+ Perl_croak(aTHX_ "Unknown Unicode option value %"UVuf,
(UV) (opt & ~PERL_UNICODE_ALL_FLAGS));
*popt = p;