summaryrefslogtreecommitdiffstats
path: root/src/CommandOutput.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/CommandOutput.h')
-rw-r--r--src/CommandOutput.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/CommandOutput.h b/src/CommandOutput.h
index cb40b05a6..91d3f61d7 100644
--- a/src/CommandOutput.h
+++ b/src/CommandOutput.h
@@ -21,9 +21,9 @@ public:
/** Syntax sugar function, calls Out() with Printf()-ed parameters; appends a newline" */
template <typename... Args>
- void Out(const char * a_Fmt, const Args & ... a_Args)
+ void Out(const char * a_Format, const Args & ... a_Args)
{
- vOut(a_Fmt, fmt::make_printf_args(a_Args...));
+ vOut(a_Format, fmt::make_printf_args(a_Args...));
}
/** Called when the command wants to output anything; may be called multiple times */