Skip to content

Commit

Permalink
Fixes for fmtlib 10.
Browse files Browse the repository at this point in the history
  • Loading branch information
Holt59 committed May 18, 2024
1 parent 5adb1ec commit f8c799f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/spawn.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,8 @@ QString makeDetails(const SpawnParameters& sp, DWORD code, const QString& more =
const std::wstring wmore = (more.isEmpty() ? L"" : (", " + more).toStdWString());

const auto s = fmt::format(
f, fmt::arg(L"code", code), fmt::arg(L"codename", errorCodeName(code)),
fmt::arg(L"more", wmore),
fmt::runtime(f), fmt::arg(L"code", code),
fmt::arg(L"codename", errorCodeName(code)), fmt::arg(L"more", wmore),
fmt::arg(L"bin",
QDir::toNativeSeparators(sp.binary.absoluteFilePath()).toStdWString()),
fmt::arg(L"owner", owner), fmt::arg(L"rights", rights),
Expand Down

0 comments on commit f8c799f

Please sign in to comment.