aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGustavo Zacarias <gustavo@zacarias.com.ar>2014-07-09 14:48:01 -0300
committerMax Kellermann <max@duempel.org>2014-07-09 19:54:35 +0200
commit0e39b59700c79bfd275fbe5a8ec067e749e02867 (patch)
tree34dc5d8db680e68eb09f5a0604c93ea2cd22dcee /src
parent552af5455eccdea2b43d202fab3f6a8c637137a8 (diff)
downloadmpd-0e39b59700c79bfd275fbe5a8ec067e749e02867.tar.gz
mpd-0e39b59700c79bfd275fbe5a8ec067e749e02867.tar.xz
mpd-0e39b59700c79bfd275fbe5a8ec067e749e02867.zip
decoder/plugins/FlacIOHandle: fix build failure due to missing stdio.h include
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Diffstat (limited to 'src')
-rw-r--r--src/decoder/plugins/FlacIOHandle.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/decoder/plugins/FlacIOHandle.cxx b/src/decoder/plugins/FlacIOHandle.cxx
index b5f9f5ec0..d37cea532 100644
--- a/src/decoder/plugins/FlacIOHandle.cxx
+++ b/src/decoder/plugins/FlacIOHandle.cxx
@@ -23,6 +23,7 @@
#include "Compiler.h"
#include <errno.h>
+#include <stdio.h>
static size_t
FlacIORead(void *ptr, size_t size, size_t nmemb, FLAC__IOHandle handle)