Skip to content
Snippets Groups Projects
Commit ee2bbff4 authored by Florian Fischer's avatar Florian Fischer
Browse files

remove useless size increasing cast which introduces a read of uninitialized memory

parent 254fa48b
No related branches found
No related tags found
1 merge request!35Add sanitizer CI targets
......@@ -15,7 +15,7 @@ void worker_log(const std::string& prefix, const std::string& message) {
const workerid_t workerId = Runtime::getWorkerId();
std::unique_lock<std::mutex> lock(worker_log_mutex);
std::cerr << (unsigned int)workerId;
std::cerr << workerId;
if (!prefix.empty()) {
std::cerr << " " << prefix << " ";
} else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment