diff options
Diffstat (limited to 'trace-read.c')
-rw-r--r-- | trace-read.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/trace-read.c b/trace-read.c index ca6661e..2ec5e57 100644 --- a/trace-read.c +++ b/trace-read.c | |||
@@ -576,7 +576,7 @@ void trace_report (int argc, char **argv) | |||
576 | {NULL, 0, NULL, 0} | 576 | {NULL, 0, NULL, 0} |
577 | }; | 577 | }; |
578 | 578 | ||
579 | c = getopt_long (argc-1, argv+1, "+hi:fepPlEwF:v", | 579 | c = getopt_long (argc-1, argv+1, "+hi:fepPlEwF:vq", |
580 | long_options, &option_index); | 580 | long_options, &option_index); |
581 | if (c == -1) | 581 | if (c == -1) |
582 | break; | 582 | break; |
@@ -616,6 +616,9 @@ void trace_report (int argc, char **argv) | |||
616 | die("Only 1 -v can be used"); | 616 | die("Only 1 -v can be used"); |
617 | neg = 1; | 617 | neg = 1; |
618 | break; | 618 | break; |
619 | case 'q': | ||
620 | silence_warnings = 1; | ||
621 | break; | ||
619 | case 0: | 622 | case 0: |
620 | switch(option_index) { | 623 | switch(option_index) { |
621 | case 0: | 624 | case 0: |