# HG changeset patch # User Florian Pose # Date 1249390643 0 # Node ID 75629ad02ca98be0a080d4b73c67299333d1b6ce # Parent ab5694a51826ec196e80ca2314d369e794c93677 Minrt changes. diff -r ab5694a51826 -r 75629ad02ca9 tool/CommandConfig.cpp --- a/tool/CommandConfig.cpp Tue Aug 04 12:52:12 2009 +0000 +++ b/tool/CommandConfig.cpp Tue Aug 04 12:57:23 2009 +0000 @@ -159,18 +159,18 @@ 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;