mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-12-20 07:14:26 +01:00
Lowercase 1st char. in err(3) strings.
This commit is contained in:
parent
614a54ebb0
commit
063bb8badc
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=37419
@ -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);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user