machinebase: fix log statement warning.

This commit is contained in:
Maxim Poliakovski 2023-07-23 16:50:14 +02:00
parent a9f73e7384
commit c2cd076662
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ HWComponent* MachineBase::get_comp_by_type(HWCompType type) {
if (found) {
return this->get_comp_by_name(comp_name);
} else {
LOG_F(WARNING, "No component of type %lu was found!", type);
LOG_F(WARNING, "No component of type %llu was found!", type);
return nullptr;
}
}