Fix syntax error in previous commit.

This commit is contained in:
Jordan K. Hubbard 2000-01-17 01:44:16 +00:00
parent b47d790500
commit 135adb1eda
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=56134

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;