kore

Kore is a web application platform for writing scalable, concurrent web based processes in C or Python.
Commits | Files | Refs | README | LICENSE | git clone https://git.kore.io/kore.git

commit 8bcfb6cbb3b73d64b404d1fed300079134972490
parent 82420e69b2ae0331bde6fc20da0f8c30e2c66515
Author: Joris Vink <joris@coders.se>
Date:   Sun,  3 Aug 2014 17:11:02 +0200

Be consistent with the help text

Diffstat:
src/kore.c | 12++++++------
1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/kore.c b/src/kore.c @@ -52,12 +52,12 @@ usage(void) fprintf(stderr, "Usage: kore [options | command]\n"); fprintf(stderr, "\n"); fprintf(stderr, "Available options:\n"); - fprintf(stderr, "\t-c\tSpecify the configuration file to use\n"); - fprintf(stderr, "\t-d\tRun with debug on (if compiled in)\n"); - fprintf(stderr, "\t-f\tStart kore in foreground mode\n"); - fprintf(stderr, "\t-h\tThis help text\n"); - fprintf(stderr, "\t-n\tDo not chroot (if not starting kore as root)\n"); - fprintf(stderr, "\t-v\tDisplay kore's version information\n"); + fprintf(stderr, "\t-c\tspecify the configuration file to use\n"); + fprintf(stderr, "\t-d\trun with debug on (if compiled in)\n"); + fprintf(stderr, "\t-f\tstart kore in foreground mode\n"); + fprintf(stderr, "\t-h\tthis help text\n"); + fprintf(stderr, "\t-n\tdo not chroot (if not starting kore as root)\n"); + fprintf(stderr, "\t-v\tdisplay kore's version information\n"); kore_cli_usage(0); }