Lowercase 1st char. in err(3) strings.

This commit is contained in:
Philippe Charnier 1998-07-06 06:59:52 +00:00
parent 614a54ebb0
commit 063bb8badc
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=37419

View File

@ -26,7 +26,7 @@
#ifndef lint
static const char rcsid[] =
"$Id$";
"$Id: kldunload.c,v 1.5 1998/01/05 07:10:42 charnier Exp $";
#endif /* not lint */
#include <err.h>
@ -83,7 +83,7 @@ main(int argc, char** argv)
struct kld_file_stat stat;
stat.version = sizeof stat;
if (kldstat(fileid, &stat) < 0)
err(1, "Can't stat file");
err(1, "can't stat file");
printf("Unloading %s, id=%d\n", stat.name, fileid);
}