mirror of
https://frontier.innolan.net/rainlance/amiga-tz.git
synced 2026-05-06 19:29:06 +00:00
other error eliminated
SCCS-file: checktab.awk SCCS-SID: 1.5
This commit is contained in:
committed by
Paul Eggert
parent
6a8f623ff2
commit
1cc91995b9
@@ -27,9 +27,14 @@ BEGIN {
|
||||
status = 1
|
||||
}
|
||||
if (cc <= cc0) {
|
||||
if (cc == cc0) {
|
||||
s = "duplicate";
|
||||
} else {
|
||||
s = "out of order";
|
||||
}
|
||||
|
||||
printf "%s:%d: country code `%s' is %s\n", \
|
||||
iso_table, iso_NR, cc, \
|
||||
cc==cc0 ? "duplicate" : "out of order" \
|
||||
iso_table, iso_NR, cc, s \
|
||||
>>"/dev/stderr"
|
||||
status = 1
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user