diff options
author | J. Alexander Treuman <jat@spatialrift.net> | 2006-07-20 19:39:46 +0000 |
---|---|---|
committer | J. Alexander Treuman <jat@spatialrift.net> | 2006-07-20 19:39:46 +0000 |
commit | 0623d6bee08b181c11700bb0313ef9af478e10d1 (patch) | |
tree | 2cb5e2b0b191786cb36005785eb2ca27e35f43c7 /src | |
parent | 00e67be7c98cedf3ea60c10d4a527f30cdfa473c (diff) | |
download | mpd-0623d6bee08b181c11700bb0313ef9af478e10d1.tar.gz mpd-0623d6bee08b181c11700bb0313ef9af478e10d1.tar.xz mpd-0623d6bee08b181c11700bb0313ef9af478e10d1.zip |
#include <string.h> in PulseAudio output for correctness
git-svn-id: https://svn.musicpd.org/mpd/trunk@4412 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src')
-rw-r--r-- | src/audioOutputs/audioOutput_pulse.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/audioOutputs/audioOutput_pulse.c b/src/audioOutputs/audioOutput_pulse.c index c748fd1bf..4523c9f5b 100644 --- a/src/audioOutputs/audioOutput_pulse.c +++ b/src/audioOutputs/audioOutput_pulse.c @@ -25,6 +25,7 @@ #include "../conf.h" #include "../log.h" +#include <string.h> #include <time.h> #include <pulse/simple.h> |