From 48691748cd67e383713d2034196285880d7323a5 Mon Sep 17 00:00:00 2001 From: chme Date: Sun, 18 Oct 2015 14:25:29 +0200 Subject: [PATCH] [mpd] fix log message if binding of artwork http server failed --- src/mpd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mpd.c b/src/mpd.c index dc019a2e..6654f278 100644 --- a/src/mpd.c +++ b/src/mpd.c @@ -4567,7 +4567,7 @@ int mpd_init(void) ret = evhttp_bind_socket(evhttpd, http_addr, http_port); if (ret < 0) { - DPRINTF(E_FATAL, L_MPD, "Could not bind HTTP artwork server at %s:%d\n", http_addr, port); + DPRINTF(E_FATAL, L_MPD, "Could not bind HTTP artwork server at %s:%d\n", http_addr, http_port); goto bind_fail; }