From c34f74c818c6ced0aa8e8b7002ba37b14c5de71b Mon Sep 17 00:00:00 2001 From: Mario Domenech Goulart Date: Wed, 8 Aug 2012 11:03:19 -0300 Subject: [PATCH] test/latency.c: Fix string argument to getopt_long, so now it handles -E and -B Signed-off-by: Takashi Iwai --- test/latency.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/latency.c b/test/latency.c index e9bc6d84..f3d2eb6f 100644 --- a/test/latency.c +++ b/test/latency.c @@ -502,7 +502,7 @@ int main(int argc, char *argv[]) morehelp = 0; while (1) { int c; - if ((c = getopt_long(argc, argv, "hP:C:m:M:F:f:c:r:s:bpen", long_option, NULL)) < 0) + if ((c = getopt_long(argc, argv, "hP:C:m:M:F:f:c:r:B:E:s:bpen", long_option, NULL)) < 0) break; switch (c) { case 'h': -- 2.47.1