diff --git a/sbin/devfs/devfs.c b/sbin/devfs/devfs.c index 8608af306f3..7a06d476384 100644 --- a/sbin/devfs/devfs.c +++ b/sbin/devfs/devfs.c @@ -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 diff --git a/sbin/devfs/rule.c b/sbin/devfs/rule.c index 8f401e1617e..f1fd908753e 100644 --- a/sbin/devfs/rule.c +++ b/sbin/devfs/rule.c @@ -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)