slight cleanup: KNF, and one line breaking tweak to make usage() slightly

more diffable w/ the BFD version in pkgsrc.
This commit is contained in:
cgd 2001-03-21 23:46:48 +00:00
parent 9f60674a47
commit bea3342290

View File

@ -1,4 +1,4 @@
/* $NetBSD: mdsetimage.c,v 1.14 2001/03/21 23:27:33 cgd Exp $ */ /* $NetBSD: mdsetimage.c,v 1.15 2001/03/21 23:46:48 cgd Exp $ */
/* /*
* Copyright (c) 1996 Christopher G. Demetriou * Copyright (c) 1996 Christopher G. Demetriou
@ -42,7 +42,7 @@ __COPYRIGHT(
#endif /* not lint */ #endif /* not lint */
#ifndef lint #ifndef lint
__RCSID("$NetBSD: mdsetimage.c,v 1.14 2001/03/21 23:27:33 cgd Exp $"); __RCSID("$NetBSD: mdsetimage.c,v 1.15 2001/03/21 23:46:48 cgd Exp $");
#endif /* not lint */ #endif /* not lint */
#include <sys/types.h> #include <sys/types.h>
@ -181,7 +181,9 @@ static void
usage() usage()
{ {
fprintf(stderr, "usage: %s kernel_file fsimage_file\n", getprogname()); fprintf(stderr,
"usage: %s kernel_file fsimage_file\n",
getprogname());
exit(1); exit(1);
} }