]> mj.ucw.cz Git - libucw.git/blobdiff - charset/misc/gen-charconv
Opt: Constify
[libucw.git] / charset / misc / gen-charconv
index a731d9ab0a4b80c2968eae5c0c4aa734dc9a7aa6..ab22b1563d0465be597d5f40f9e1b17caff1a910 100755 (executable)
@@ -182,9 +182,6 @@ print "static unsigned char string_table[] = {\n";
 $i = 256;
 while ($i < $pstr) {
        $w = $strval{$i};
-       if (length($w) > 3) {
-               print STDERR "Warning: Entries should have at most 3 characters, see charset/stk-charconv.c\n";
-       }
        print length $w, ",";
        foreach $x (unpack("C256", $w)) {
                print " $x,";