diff options
| author | Carl Hetherington <cth@carlh.net> | 2026-02-21 01:17:40 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2026-02-21 01:17:40 +0100 |
| commit | 9f9c91448f4796981497cd9d12b285ccd08f4a6a (patch) | |
| tree | 8f555e5886c75b3de5394c88942ade4213edaec4 | |
| parent | 92a4984c94ae3148f6c7a66665c65608e7016576 (diff) | |
Fix incorrect format placeholder.
| -rw-r--r-- | src/lib/grok/util.cc | 2 |
1 files changed, 1 insertions, 1 deletions
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 {}; } } |
