Add comment that this value is unused.

It is obvious that it isn't used, but both clang and Coverity talk about it.

Found with:   Coverity Prevent(tm)
CID:          8066
This commit is contained in:
Edwin Groothuis 2010-06-05 12:53:44 +00:00
parent 3b8d8bd75e
commit 7ba8f7307a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=208831

View file

@ -358,7 +358,7 @@ read_zones(void)
if (strlen(tlc) != 2)
errx(1, "%s:%d: invalid country code `%s'",
path_zonetab, lineno, tlc);
coord = strsep(&line, "\t");
coord = strsep(&line, "\t"); /* Unused */
file = strsep(&line, "\t");
p = strchr(file, '/');
if (p == 0)