diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2014-07-09 14:48:01 -0300 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-07-09 19:54:35 +0200 |
commit | 0e39b59700c79bfd275fbe5a8ec067e749e02867 (patch) | |
tree | 34dc5d8db680e68eb09f5a0604c93ea2cd22dcee /src/decoder/plugins | |
parent | 552af5455eccdea2b43d202fab3f6a8c637137a8 (diff) | |
download | mpd-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/decoder/plugins')
-rw-r--r-- | src/decoder/plugins/FlacIOHandle.cxx | 1 |
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) |