tool/CommandConfig.cpp
changeset 1172 74ee632c3b5e
parent 1167 9e0ebb38e301
child 1188 3b4e82d9904b
--- a/tool/CommandConfig.cpp	Tue Jul 29 11:37:29 2008 +0000
+++ b/tool/CommandConfig.cpp	Wed Jul 30 15:31:01 2008 +0000
@@ -125,7 +125,7 @@
         
         if (configIter->slave_position != -1) {
             m.getSlave(&slave, configIter->slave_position);
-            cout << configIter->slave_position
+            cout << dec << configIter->slave_position
                 << " (" << alStateString(slave.al_state) << ")" << endl;
         } else {
             cout << "none" << endl;
@@ -238,7 +238,7 @@
         if (configIter->slave_position != -1) {
             m.getSlave(&slave, configIter->slave_position);
 
-            str << configIter->slave_position;
+            str << dec << configIter->slave_position;
             info.slavePos = str.str();
             str.clear();
             str.str("");