summaryrefslogtreecommitdiffstats
path: root/patches/tiobench-0.3.3/generic/print_help_if_no_parameters_are_given.diff
blob: 8ce9883acb67452c704223ae3e992f7ab91f88bc (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
Subject: Output help if no parameters are given
From: Juergen Beisert <j.beisert@pengutronix.de>

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(+)

Index: tiotest.c
===================================================================
--- tiotest.c.orig
+++ tiotest.c
@@ -112,6 +112,9 @@ void parse_args( ArgumentOptions* args, 
 	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");