From d687b4ee0c7ac58d9a9e5e50fb1813f47f17681d Mon Sep 17 00:00:00 2001 From: CYBERDEViL Date: Wed, 3 May 2023 21:26:29 +0200 Subject: [PATCH] Print real default TMP_PATH in printHelp() --- src/rewise.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/rewise.c b/src/rewise.c index 1753473..0b35be5 100644 --- a/src/rewise.c +++ b/src/rewise.c @@ -126,7 +126,8 @@ void printHelp(void) { printf("\n"); printf(" OPTIONS\n"); printf(" -p --preserve Don't delete TMP files.\n"); - printf(" -t --tmp-path TMP_PATH Set temporary path, default: /tmp/\n"); + printf(" -t --tmp-path TMP_PATH Set temporary path, default: %s\n", + REWISE_DEFAULT_TMP_PATH); printf(" -d --debug Print debug info.\n"); printf(" -s --silent Be silent, don't print anything.\n"); printf(" -n --no-extract Don't extract anything. This will "