From 7bb6a8365ebb853318c2aae0b30f8acd13094326 Mon Sep 17 00:00:00 2001 From: Andreas Rammhold Date: Mon, 17 Oct 2016 01:00:55 +0200 Subject: [PATCH] Fixed typo in "max_output_buffer_size' The reported error message now points to the right tuneable in mpd.conf --- src/helpers.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helpers.cpp b/src/helpers.cpp index adf25524..3b93bbe4 100644 --- a/src/helpers.cpp +++ b/src/helpers.cpp @@ -53,7 +53,7 @@ MPD::SongIterator getDatabaseIterator(MPD::Connection &mpd) { // If we can't get the database, display appropriate // error message and reconnect with the MPD server. - Statusbar::print("Unable to fetch the data, increase max_buffer_output_size in your MPD configuration file"); + Statusbar::print("Unable to fetch the data, increase max_output_buffer_size in your MPD configuration file"); mpd.Disconnect(); mpd.Connect(); }