diff options
author | Tiger Wang <ziwei.tiger@outlook.com> | 2020-05-04 20:21:48 +0200 |
---|---|---|
committer | Tiger Wang <ziwei.tiger@outlook.com> | 2020-07-23 01:32:47 +0200 |
commit | 330626ab22fe2e87afa5306c5f4039088c41b49e (patch) | |
tree | 86a5c7e0f0eb34743d186cbd712d368fed16f748 /src/CommandOutput.h | |
parent | Remove some unused inclusions (diff) | |
download | cuberite-330626ab22fe2e87afa5306c5f4039088c41b49e.tar cuberite-330626ab22fe2e87afa5306c5f4039088c41b49e.tar.gz cuberite-330626ab22fe2e87afa5306c5f4039088c41b49e.tar.bz2 cuberite-330626ab22fe2e87afa5306c5f4039088c41b49e.tar.lz cuberite-330626ab22fe2e87afa5306c5f4039088c41b49e.tar.xz cuberite-330626ab22fe2e87afa5306c5f4039088c41b49e.tar.zst cuberite-330626ab22fe2e87afa5306c5f4039088c41b49e.zip |
Diffstat (limited to '')
-rw-r--r-- | src/CommandOutput.h | 4 |
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 */ |