Nuke whitespace at EOL.

This commit is contained in:
Dima Dorfman 2002-07-28 06:59:40 +00:00
parent ec7e38fb22
commit 9ffb7cd974
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=100805
2 changed files with 3 additions and 3 deletions

View File

@ -118,7 +118,7 @@ eatoi(const char *s)
if (l > INT_MAX || *cp != '\0')
errx(1, "error converting to integer: %s", s);
return ((int)l);
}
}
/*
* As atonum(), but the result of failure is death.
@ -131,7 +131,7 @@ eatonum(const char *s)
if (!atonum(s, &num))
errx(1, "error converting to number: %s", s); /* XXX clarify */
return (num);
}
}
/*
* Read a line from a /FILE/. If the return value isn't 0, it is the

View File

@ -226,7 +226,7 @@ rule_show(int ac __unused, char **av)
err(1, "ioctl DEVFSIO_RGETNEXT");
}
return (0);
}
}
static int
rule_showsets(int ac, char **av __unused)