diff options
author | Max Kellermann <max@musicpd.org> | 2019-05-22 18:38:25 +0200 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2019-05-23 12:17:59 +0200 |
commit | e0d5d8810452265fe2e4d95eefb5585eb65f9ce5 (patch) | |
tree | 5405f3593158c9e425be4c7cbdd41b44ca78a0e8 /src/LogV.hxx | |
parent | 585a74548485787525bb8b9c921b97ccced2f957 (diff) |
Log: make LogLevel the first parameter
Prepare for templated functions.
Diffstat (limited to 'src/LogV.hxx')
-rw-r--r-- | src/LogV.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/LogV.hxx b/src/LogV.hxx index 23e27d931..7e55d3d24 100644 --- a/src/LogV.hxx +++ b/src/LogV.hxx @@ -1,5 +1,5 @@ /* - * Copyright 2003-2018 The Music Player Daemon Project + * Copyright 2003-2019 The Music Player Daemon Project * http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify @@ -25,7 +25,7 @@ #include <stdarg.h> void -LogFormatV(const Domain &domain, LogLevel level, +LogFormatV(LogLevel level, const Domain &domain, const char *fmt, va_list ap) noexcept; #endif /* LOG_H */ |