From 9812418024bebaa1bd4360d37190120e1ba18574 Mon Sep 17 00:00:00 2001 From: Moritz Schlarb Date: Tue, 15 Oct 2019 16:02:37 +0200 Subject: [PATCH] Put long help text in next line to look better --- src/main.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index b16ecf251..00b8f6a2d 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -107,14 +107,14 @@ void do_help(int argc, char *argv[]) { printf("Options:\n"); printf(" -V,--version\n"); printf(" -h,--help\n"); - printf(" -c,--config-dir=\tSet configuration directory\n"); - printf(" -d,--data-dir=\tSet data directory\n"); - printf(" --stdout\tSend logging output to standard output instead of logfile\n"); - printf(" -D,--delay\tWait one second before doing anything else\n"); - printf(" -P,--ping\tSend Ping to running instance of the Seafile Client, which should respond with Pong\n"); - printf(" -K,--stop\tStop a running instance of the Seafile Client\n"); - printf(" -X,--remove-user-data\tRemove all user configuration data\n"); - printf(" -f,--open-local-file=\tOpen a file from a Seafile library locally (used by \"Open via Client\" in Seahub)\n"); + printf(" -c,--config-dir=\n\tSet configuration directory\n"); + printf(" -d,--data-dir=\n\tSet data directory\n"); + printf(" --stdout\n\tSend logging output to standard output instead of logfile\n"); + printf(" -D,--delay\n\tWait one second before doing anything else\n"); + printf(" -P,--ping\n\tSend Ping to running instance of the Seafile Client, which should respond with Pong\n"); + printf(" -K,--stop\n\tStop a running instance of the Seafile Client\n"); + printf(" -X,--remove-user-data\n\tRemove all user configuration data\n"); + printf(" -f,--open-local-file=\n\tOpen a file from a Seafile library locally (used by \"Open via Client\" in Seahub)\n"); } void handleCommandLineOption(int argc, char *argv[])