summaryrefslogtreecommitdiffstats
path: root/patches/tiobench-0.3.3/0001-Output-help-if-no-parameters-are-given.patch
blob: 48de2c5557e82534ebc1469e1f48a884b8a39e5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
From: Juergen Beisert <j.beisert@pengutronix.de>
Date: Thu, 18 Oct 2012 14:25:03 +0200
Subject: [PATCH] Output help if no parameters are given

Output a help, if a user omit any parameter instead of silently start the
job and do something.

Signed-off-by: Juergen Beisert <j.beisert@pengutronix.de>
---
 tiotest.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/tiotest.c b/tiotest.c
index 38f54e7917a0..6407d70252bf 100644
--- a/tiotest.c
+++ b/tiotest.c
@@ -112,6 +112,9 @@ void parse_args( ArgumentOptions* args, int argc, char *argv[] )
 	int c;
 	int once = 0;
 
+	if (argc == 1)
+		print_help_and_exit();
+
 	while (1)
 	{
 		c = getopt( argc, argv, "f:b:d:t:r:D:k:o:hLRTWSOc");