Minrt changes.

This commit is contained in:
Florian Pose 2009-08-04 12:57:23 +00:00
parent 0663090dcc
commit 124ae9d218
1 changed files with 4 additions and 4 deletions

View File

@ -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;