Commit 9b1f44e7 authored by Max Kellermann's avatar Max Kellermann

LogInit: work around two Android compiler warnings

parent 804ccddf
......@@ -41,6 +41,7 @@
#define LOG_DATE_BUF_SIZE 16
#define LOG_DATE_LEN (LOG_DATE_BUF_SIZE - 1)
gcc_unused
static constexpr Domain log_domain("log");
#ifndef ANDROID
......@@ -121,6 +122,7 @@ void
log_init(const ConfigData &config, bool verbose, bool use_stdout)
{
#ifdef ANDROID
(void)config;
(void)verbose;
(void)use_stdout;
#else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment