reset setfill

This commit is contained in:
Robin Müller 2020-06-05 20:59:07 +02:00
parent fd0cc2a8ca
commit 4b5bb0b3be

View File

@ -70,8 +70,9 @@ void ObjectManager::initialize() {
if ( return_value != RETURN_OK ) {
object_id_t var = it.first;
sif::error << "Object 0x" << std::hex << std::setw(8) <<
std::setfill('0')<< var << " failed to initialize " <<
"with code 0x" << return_value << std::dec << std::endl;
std::setfill('0') << var << " failed to initialize " <<
"with code 0x" << return_value << std::dec <<
std::setfill('') << std::endl;
error_count++;
}
}