CVS commit by adridg: Produce more understandable debug and avoid breaking cerr by removing the latin1() M +2 -2 kpilotlink.cc 1.61 --- kdepim/kpilot/lib/kpilotlink.cc #1.60:1.61 @@ -105,5 +105,5 @@ private: #ifdef DEBUG DEBUGDAEMON << "Bound devices: " - << mBoundDevices.join(", ").latin1() << endl; + << ((mBoundDevices.count() > 0) ? mBoundDevices.join(", ") : CSL1("")) << endl; #endif }