[PATCH] Fixed -C and -r to take optional argument
by Jaroslav Škarvada
I.e. it fixes the following:
powertop -C -t 1
...
Taking 1 measurement(s) for a duration of 20 second(s) each.
PowerTOP outputing using base filename -t
But:
powertop --html -t 1
...
Taking 1 measurement(s) for a duration of 1 second(s) each.
PowerTOP outputing using base filename powertop.html
Signed-off-by: Jaroslav Škarvada <jskarvad(a)redhat.com>
---
src/main.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/main.cpp b/src/main.cpp
index 7467f0f..d1c18cc 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -441,7 +441,7 @@ int main(int argc, char **argv)
#endif
ui_notify_user = ui_notify_user_ncurses;
while (1) { /* parse commandline options */
- c = getopt_long(argc, argv, "cC:r:i:qt:w:Vh", long_options, &option_index);
+ c = getopt_long(argc, argv, "cC::r::i:qt:w:Vh", long_options, &option_index);
/* Detect the end of the options. */
if (c == -1)
break;
--
2.14.5
3 years, 5 months