diff options
| author | Liam Mitchell <[email protected]> | 2025-02-19 00:08:41 +0000 |
|---|---|---|
| committer | Liam Mitchell <[email protected]> | 2025-02-19 00:08:41 +0000 |
| commit | 7e700445334d8d3269bca0bf446ff63211296dce (patch) | |
| tree | 4ae289d6c87aee133defd6ecaf173f4eadb64036 /src/zenutil | |
| parent | changelog (diff) | |
| download | zen-7e700445334d8d3269bca0bf446ff63211296dce.tar.xz zen-7e700445334d8d3269bca0bf446ff63211296dce.zip | |
Linux compilation fixes
Diffstat (limited to 'src/zenutil')
| -rw-r--r-- | src/zenutil/chunkrequests.cpp | 2 | ||||
| -rw-r--r-- | src/zenutil/service.cpp | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/zenutil/chunkrequests.cpp b/src/zenutil/chunkrequests.cpp index 745363668..e28df02a8 100644 --- a/src/zenutil/chunkrequests.cpp +++ b/src/zenutil/chunkrequests.cpp @@ -1,5 +1,7 @@ // Copyright Epic Games, Inc. All Rights Reserved. +#include <algorithm> + #include <zenutil/chunkrequests.h> #include <zencore/blake3.h> diff --git a/src/zenutil/service.cpp b/src/zenutil/service.cpp index 45874d1b5..8d6b399ca 100644 --- a/src/zenutil/service.cpp +++ b/src/zenutil/service.cpp @@ -973,7 +973,7 @@ QueryInstalledService(std::string_view ServiceName, ServiceInfo& OutInfo) } else { - ZEN_DEBUG("systemctl status failed with '{}"({}), Res.second, Res.first); + ZEN_DEBUG("systemctl status failed with '{}'({})", Res.second, Res.first); } } |