diff options
Diffstat (limited to '')
-rw-r--r-- | src/CommandOutput.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/CommandOutput.cpp b/src/CommandOutput.cpp index a558facdb..2d363da06 100644 --- a/src/CommandOutput.cpp +++ b/src/CommandOutput.cpp @@ -13,9 +13,9 @@ //////////////////////////////////////////////////////////////////////////////// // cCommandOutputCallback: -void cCommandOutputCallback::Out(const char * a_Fmt, fmt::ArgList args) +void cCommandOutputCallback::vOut(const char * a_Fmt, fmt::printf_args args) { - AString Output = Printf(a_Fmt, args); + AString Output = ::vPrintf(a_Fmt, args); Output.append("\n"); Out(Output); } |