Make spacing and punctuation consistent

This commit is contained in:
Peter Eisentraut 2016-02-29 20:08:16 -05:00
parent ce91b9209f
commit 9dbcb500ca
2 changed files with 3 additions and 3 deletions

View File

@ -168,9 +168,9 @@ while ($line = <FILE>)
if ($array{$code} ne "")
{
printf STDERR
"Warning: duplicate UTF-8: %08x UCS: %04x Shift JIS: %04x\n", $utf,
"Warning: duplicate UTF8: %08x UCS: %04x Shift JIS: %04x\n", $utf,
$ucs, $code;
printf STDERR "Previous value: UTF-8: %08x\n", $array{$utf};
printf STDERR "Previous value: UTF8: %08x\n", $array{$utf};
next;
}
$count++;

View File

@ -55,7 +55,7 @@ while (<FILE>)
&& ($code <= 0x879c)))
{
printf STDERR
"Warning: duplicate UTF8 : UCS=0x%04x SJIS=0x%04x\n", $ucs,
"Warning: duplicate UTF8: UCS=0x%04x SJIS=0x%04x\n", $ucs,
$code;
next;
}