1
0

Update submodules

This commit is contained in:
Tiger Wang
2020-05-04 19:21:48 +01:00
parent 07f3f7ec30
commit 330626ab22
13 changed files with 51 additions and 80 deletions

View File

@@ -13,9 +13,9 @@
////////////////////////////////////////////////////////////////////////////////
// cCommandOutputCallback:
void cCommandOutputCallback::vOut(const char * a_Fmt, fmt::printf_args args)
void cCommandOutputCallback::vOut(const char * a_Fmt, fmt::printf_args a_ArgList)
{
AString Output = ::vPrintf(a_Fmt, args);
AString Output = ::vPrintf(a_Fmt, a_ArgList);
Output.append("\n");
Out(Output);
}