diff options
author | Max Kellermann <max@duempel.org> | 2013-11-11 08:19:29 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-11-11 08:20:09 +0100 |
commit | f6b44af9988d0287b6f4974ba9daab57f6298ed2 (patch) | |
tree | cdf30bc7e47c4cf2aa7217601067c381e1a3e796 | |
parent | 84c3d9674ff56567704ebfa90a4bb3747cce3c76 (diff) | |
download | mpd-f6b44af9988d0287b6f4974ba9daab57f6298ed2.tar.gz mpd-f6b44af9988d0287b6f4974ba9daab57f6298ed2.tar.xz mpd-f6b44af9988d0287b6f4974ba9daab57f6298ed2.zip |
DespotifyUtils: add missing stdio.h include
-rw-r--r-- | src/DespotifyUtils.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/DespotifyUtils.cxx b/src/DespotifyUtils.cxx index 769a4e8fb..e91587a7f 100644 --- a/src/DespotifyUtils.cxx +++ b/src/DespotifyUtils.cxx @@ -28,6 +28,8 @@ extern "C" { #include <despotify.h> } +#include <stdio.h> + const Domain despotify_domain("despotify"); static struct despotify_session *g_session; |