aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Arun Prakash Jana <engineerarun@gmail.com>2018-08-06 20:17:35 +0530
committerGravatar Arun Prakash Jana <engineerarun@gmail.com>2018-08-06 20:17:35 +0530
commit7707988fd268fafc733959b90b825eff5fd82f2c (patch)
tree0687614cab8770ec5f61788e828bdc397ddc4eab
parentaf3d0a69bcb07e2e42bc7fd7a3d4a5277ef8b246 (diff)
downloadnnn-7707988fd268fafc733959b90b825eff5fd82f2c.tar.gz
PR #111: Multiple string constants concatenate since C99
-rw-r--r--nnn.c32
1 files changed, 16 insertions, 16 deletions
diff --git a/nnn.c b/nnn.c
index ed5bd67..3bad056 100644
--- a/nnn.c
+++ b/nnn.c
@@ -3317,22 +3317,22 @@ nochange:
static void
usage(void)
{
- printf("usage: nnn [-b key] [-c N] [-e] [-i] [-l]\n\
- [-p nlay] [-S] [-v] [-h] [PATH]\n\n\
-The missing terminal file browser for X.\n\n\
-positional arguments:\n\
- PATH start dir [default: current dir]\n\n\
-optional arguments:\n\
- -b key specify bookmark key to open\n\
- -c N specify dir color, disables if N>7\n\
- -e use exiftool instead of mediainfo\n\
- -i start in navigate-as-you-type mode\n\
- -l start in light mode (fewer details)\n\
- -p nlay path to custom nlay\n\
- -S start in disk usage analyzer mode\n\
- -v show program version and exit\n\
- -h show this help and exit\n\n\
-Version: %s\n%s\n", VERSION, GENERAL_INFO);
+ printf("usage: nnn [-b key] [-c N] [-e] [-i] [-l]\n"
+ " [-p nlay] [-S] [-v] [-h] [PATH]\n\n"
+ "The missing terminal file browser for X.\n\n"
+ "positional arguments:\n"
+ " PATH start dir [default: current dir]\n\n"
+ "optional arguments:\n"
+ " -b key specify bookmark key to open\n"
+ " -c N specify dir color, disables if N>7\n"
+ " -e use exiftool instead of mediainfo\n"
+ " -i start in navigate-as-you-type mode\n"
+ " -l start in light mode (fewer details)\n"
+ " -p nlay path to custom nlay\n"
+ " -S start in disk usage analyser mode\n"
+ " -v show program version and exit\n"
+ " -h show this help and exit\n\n"
+ "Version: %s\n%s\n", VERSION, GENERAL_INFO);
exit(0);
}