From 124ae9d2186ec5444f7a6ef0637d4db3b99421c6 Mon Sep 17 00:00:00 2001 From: Florian Pose Date: Tue, 4 Aug 2009 12:57:23 +0000 Subject: [PATCH] Minrt changes. --- tool/CommandConfig.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tool/CommandConfig.cpp b/tool/CommandConfig.cpp index 376a8dfc..9532665e 100644 --- a/tool/CommandConfig.cpp +++ b/tool/CommandConfig.cpp @@ -159,18 +159,18 @@ void CommandConfig::showDetailedConfigs( cout << "none" << endl; } - cout << "Watchdog Divider: "; + cout << "Watchdog divider: "; if (configIter->watchdog_divider) { cout << dec << configIter->watchdog_divider; } else { - cout << "default"; + cout << "(Default)"; } cout << endl - << "Watchdog Intervals: "; + << "Watchdog intervals: "; if (configIter->watchdog_intervals) { cout << dec << configIter->watchdog_intervals; } else { - cout << "default"; + cout << "(Default)"; } cout << endl;