1
0
mirror of https://frontier.innolan.net/rainlance/amiga-tz.git synced 2026-05-06 22:39:37 +00:00

other error eliminated

SCCS-file: checktab.awk
SCCS-SID: 1.5
This commit is contained in:
Arthur David Olson
1999-09-28 10:53:04 -04:00
committed by Paul Eggert
parent 6a8f623ff2
commit 1cc91995b9

View File

@@ -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
}