From d86c9914e5d5501e731c74b0f2c1d19fc86fe950 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Sun, 20 Jan 2019 11:35:20 +0100 Subject: [PATCH] module/mpd: silence overflow warning --- modules/mpd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/mpd.c b/modules/mpd.c index 2f48074..f6743af 100644 --- a/modules/mpd.c +++ b/modules/mpd.c @@ -124,7 +124,7 @@ content(struct module *mod) if (m->state == STATE_PLAY) { elapsed += timespec_diff_milli_seconds(&now, &m->elapsed.when); if (elapsed > m->duration) { - LOG_WARN( + LOG_DBG( "dynamic update of elapsed overflowed: " "elapsed=%"PRIu64", duration=%"PRIu64, elapsed, m->duration); elapsed = m->duration;