From c2cd076662fd17644f06c432f19f49bf18fc01e0 Mon Sep 17 00:00:00 2001 From: Maxim Poliakovski Date: Sun, 23 Jul 2023 16:50:14 +0200 Subject: [PATCH] machinebase: fix log statement warning. --- machines/machinebase.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/machines/machinebase.cpp b/machines/machinebase.cpp index de6c39a..82dae6b 100644 --- a/machines/machinebase.cpp +++ b/machines/machinebase.cpp @@ -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; } }