Fix syntax error in previous commit.

This commit is contained in:
jkh 2000-01-17 01:44:16 +00:00
parent 2aa8c09f09
commit b080d49296

View File

@ -213,7 +213,7 @@ file(char *name)
retval = 0;
while(fgets(line, 100, fp) != NULL) {
i = sscanf(line, "%49s %49s %49s %49s %49s", arg[0], arg[1],
arg[2], arg[3], arg[4])
arg[2], arg[3], arg[4]);
if (i < 2) {
warnx("bad line: %s", line);
retval = 1;