From 9f9c91448f4796981497cd9d12b285ccd08f4a6a Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sat, 21 Feb 2026 01:17:40 +0100 Subject: Fix incorrect format placeholder. --- src/lib/grok/util.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/grok/util.cc b/src/lib/grok/util.cc index 51b9c1037..3d5caeba1 100644 --- a/src/lib/grok/util.cc +++ b/src/lib/grok/util.cc @@ -52,7 +52,7 @@ get_gpu_names() return gpu_names; } catch (std::exception& e) { - LOG_ERROR("Could not fetch GPU names: %1", e.what()); + LOG_ERROR("Could not fetch GPU names: {}", e.what()); return {}; } } -- cgit v1.2.3