aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoerg Mayer <jmpt@loplof.de>2012-08-24 00:11:39 +0200
committerChris E Ferron <chris.e.ferron@linux.intel.com>2012-08-24 09:11:48 -0700
commitc445a5cd95f70e3c70d82c60d2ba3e23d0769f2b (patch)
tree95f89e26e0577a0a43c20ccfbc274d2d3e1f6f3b
parent631fd03d62d5aa485d38f95a781a99ca5b476b0a (diff)
Fix spelling of default names to match manpage.
Signed-off-by: Joerg Mayer <jmpt@loplof.de>
-rw-r--r--src/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 139b514..4f617ce 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -371,7 +371,7 @@ int main(int argc, char **argv)
case 'h': /* html report */
wantreport = true;
reporttype = 1;
- sprintf(filename, "%s", optarg ? optarg : "PowerTOP.html" );
+ sprintf(filename, "%s", optarg ? optarg : "powertop.html" );
break;
case 't':
@@ -392,7 +392,7 @@ int main(int argc, char **argv)
case 'C': /* csv report*/
wantreport = true;
reporttype = 0;
- sprintf(filename, "%s", optarg ? optarg : "PowerTOP.csv");
+ sprintf(filename, "%s", optarg ? optarg : "powertop.csv");
break;
case '?': /* Unknown option */
/* getopt_long already printed an error message. */