diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2007-02-18 23:59:04 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2007-02-18 23:59:04 +0000 |
commit | f10d03c3d16eea599ecbd395c2e357f90833f729 (patch) | |
tree | e08b898c0a167fb0907217c1d977107e3932e582 /usr.sbin/cron/cron.c | |
parent | bc0d194e29c7a9ce8ab3a3a8dfaa3dd82faa30d3 (diff) |
tidy up synopsis and usage();
Diffstat (limited to 'usr.sbin/cron/cron.c')
-rw-r--r-- | usr.sbin/cron/cron.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/cron/cron.c b/usr.sbin/cron/cron.c index e7b9082793e..b30058e583a 100644 --- a/usr.sbin/cron/cron.c +++ b/usr.sbin/cron/cron.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cron.c,v 1.38 2005/11/15 07:02:37 miod Exp $ */ +/* $OpenBSD: cron.c,v 1.39 2007/02/18 23:59:03 jmc Exp $ */ /* Copyright 1988,1990,1993,1994 by Paul Vixie * All rights reserved @@ -22,7 +22,7 @@ */ #if !defined(lint) && !defined(LINT) -static const char rcsid[] = "$OpenBSD: cron.c,v 1.38 2005/11/15 07:02:37 miod Exp $"; +static const char rcsid[] = "$OpenBSD: cron.c,v 1.39 2007/02/18 23:59:03 jmc Exp $"; #endif #define MAIN_PROGRAM @@ -55,7 +55,7 @@ usage(void) { const char **dflags; #endif - fprintf(stderr, "usage: %s [-l load_avg] [-n] [-x [", ProgramName); + fprintf(stderr, "usage: %s [-n] [-l load_avg] [-x [", ProgramName); #if DEBUGGING for (dflags = DebugFlagNames; *dflags; dflags++) fprintf(stderr, "%s%s", *dflags, dflags[1] ? "," : "]"); |