summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMax Kellermann <max@musicpd.org>2019-05-22 18:38:25 +0200
committerMax Kellermann <max@musicpd.org>2020-07-06 21:07:26 +0200
commit36e6079c57787a3599de8be80e508eb497d0de1e (patch)
tree196056bfaf8603d9fe8a5b2240d2594d070c27f3 /test
parente5f23678ca1bdaaff3dba81af89d5d3fe9be594a (diff)
Log: make LogLevel the first parameter
Prepare for templated functions.
Diffstat (limited to 'test')
-rw-r--r--test/test_translate_song.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_translate_song.cxx b/test/test_translate_song.cxx
index 8c2b41ebb..6afcc3ca4 100644
--- a/test/test_translate_song.cxx
+++ b/test/test_translate_song.cxx
@@ -25,7 +25,7 @@
#include <stdio.h>
void
-Log(const Domain &domain, gcc_unused LogLevel level, const char *msg) noexcept
+Log(LogLevel, const Domain &domain, const char *msg) noexcept
{
fprintf(stderr, "[%s] %s\n", domain.GetName(), msg);
}