# HG changeset patch # User Florian Pose # Date 1217431861 0 # Node ID 74ee632c3b5eaa465614f972de82a1b0b82b0bc3 # Parent de880622f2530babd77c4c1a77d838bd18e39416 Fixed attached slave position in 'ethercat config' -> decimal. diff -r de880622f253 -r 74ee632c3b5e tool/CommandConfig.cpp --- 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("");