errx() provides a newline on its own, so remove the one from the error string.
This commit is contained in:
parent
2ba7db1893
commit
9f28457331
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: resize_lfs.c,v 1.2 2005/06/02 01:16:06 lukem Exp $ */
|
||||
/* $NetBSD: resize_lfs.c,v 1.3 2006/09/04 18:34:22 wiz Exp $ */
|
||||
/*-
|
||||
* Copyright (c) 2005 The NetBSD Foundation, Inc.
|
||||
* All rights reserved.
|
||||
|
@ -57,7 +57,7 @@
|
|||
static void
|
||||
usage(void)
|
||||
{
|
||||
errx(1, "usage: resize_lfs [-v] [-s new-size] [filesystem]\n");
|
||||
errx(1, "usage: resize_lfs [-v] [-s new-size] [filesystem]");
|
||||
}
|
||||
|
||||
int
|
||||
|
|
Loading…
Reference in New Issue