- synchronize `usage' message with man page.

Patch from Bug Hunting.
This commit is contained in:
wiz 2012-08-26 14:14:16 +00:00
parent c33cd716b3
commit 5559f4329b

View File

@ -1,4 +1,4 @@
/* $NetBSD: uniq.c,v 1.17 2010/10/06 07:59:18 wiz Exp $ */ /* $NetBSD: uniq.c,v 1.18 2012/08/26 14:14:16 wiz Exp $ */
/* /*
* Copyright (c) 1989, 1993 * Copyright (c) 1989, 1993
@ -42,7 +42,7 @@ __COPYRIGHT("@(#) Copyright (c) 1989, 1993\
#if 0 #if 0
static char sccsid[] = "@(#)uniq.c 8.3 (Berkeley) 5/4/95"; static char sccsid[] = "@(#)uniq.c 8.3 (Berkeley) 5/4/95";
#endif #endif
__RCSID("$NetBSD: uniq.c,v 1.17 2010/10/06 07:59:18 wiz Exp $"); __RCSID("$NetBSD: uniq.c,v 1.18 2012/08/26 14:14:16 wiz Exp $");
#endif /* not lint */ #endif /* not lint */
#include <err.h> #include <err.h>
@ -251,7 +251,7 @@ obsolete(char *argv[])
static void static void
usage(void) usage(void)
{ {
(void)fprintf(stderr, "Usage: %s [-cdu] [-f fields] [-s chars] " (void)fprintf(stderr, "usage: %s [-cdu] [-f fields] [-s chars] "
"[input [output]]\n", getprogname()); "[input_file [output_file]]\n", getprogname());
exit(1); exit(1);
} }