reset setfill

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

View File

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