1
0
Fork 0

greybus: loopback_test: Fix -z argument bug

The -z argument was missing the break statement needed in the switch
block and was not in the getopt list.

Signed-off-by: Ryan Lim <limryan@google.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
hifive-unleashed-5.1
Ryan Lim 2016-07-20 08:14:03 -07:00 committed by Greg Kroah-Hartman
parent 2861e20790
commit bf32654a24
1 changed files with 2 additions and 1 deletions

View File

@ -901,7 +901,7 @@ int main(int argc, char *argv[])
memset(&t, 0, sizeof(t));
while ((o = getopt(argc, argv,
"t:s:i:S:D:m:v::d::r::p::a::l::x::o:c:w:O:")) != -1) {
"t:s:i:S:D:m:v::d::r::p::a::l::x::o:O:c:w:z::")) != -1) {
switch (o) {
case 't':
snprintf(t.test_name, MAX_STR_LEN, "%s", optarg);
@ -956,6 +956,7 @@ int main(int argc, char *argv[])
break;
case 'z':
t.file_output = 1;
break;
default:
usage();
return -EINVAL;