From 55e428a4d79c418d16d8a6262fe234361eda1aab Mon Sep 17 00:00:00 2001 From: Peter Oberparleiter Date: Tue, 7 Sep 2021 15:28:01 +0200 Subject: [PATCH] dump2tar: Fix (null) output on help text MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix the following incorrect help text line: -T, --file-timeout (null) Stop reading file after SEC seconds Signed-off-by: Peter Oberparleiter Signed-off-by: Jan Höppner --- dump2tar/src/dump2tar.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dump2tar/src/dump2tar.c b/dump2tar/src/dump2tar.c index 6d0fe6b2..e4fd67ab 100644 --- a/dump2tar/src/dump2tar.c +++ b/dump2tar/src/dump2tar.c @@ -110,6 +110,7 @@ static struct util_opt dump2tar_opts[] = { { .option = { "file-timeout", required_argument, NULL, 'T' }, .desc = "Stop reading file after SEC seconds", + .argument = "SEC", }, { .option = { "file-max-size", required_argument, NULL, 'M' },