diff options
author | Warren Dukes <warren.dukes@gmail.com> | 2005-03-05 14:26:37 +0000 |
---|---|---|
committer | Warren Dukes <warren.dukes@gmail.com> | 2005-03-05 14:26:37 +0000 |
commit | c8f044572e5520b1bbe5c146eef5e21449953510 (patch) | |
tree | 74311befb31b2c64670f0965319728018e0d69f2 /src/audioOutputs/audioOutput_shout.c | |
parent | 92653f847492ece39beb91d547434c9a7c5e6978 (diff) | |
download | mpd-c8f044572e5520b1bbe5c146eef5e21449953510.tar.gz mpd-c8f044572e5520b1bbe5c146eef5e21449953510.tar.xz mpd-c8f044572e5520b1bbe5c146eef5e21449953510.zip |
fix some compilation warning
git-svn-id: https://svn.musicpd.org/mpd/trunk@3013 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/audioOutputs/audioOutput_shout.c')
-rw-r--r-- | src/audioOutputs/audioOutput_shout.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/audioOutputs/audioOutput_shout.c b/src/audioOutputs/audioOutput_shout.c index 1276e6b78..16b27947e 100644 --- a/src/audioOutputs/audioOutput_shout.c +++ b/src/audioOutputs/audioOutput_shout.c @@ -361,7 +361,7 @@ static void myShout_finishDriver(AudioOutput * audioOutput) { if(shoutInitCount == 0) shout_shutdown(); } -static void myShout_dropBufferedAudioDevice(AudioOutput * audioOutput) { +static void myShout_dropBufferedAudio(AudioOutput * audioOutput) { // needs to be implemented } @@ -601,6 +601,7 @@ AudioOutputPlugin shoutPlugin = myShout_finishDriver, myShout_openDevice, myShout_play, + myShout_dropBufferedAudio, myShout_closeDevice, myShout_setTag }; @@ -615,6 +616,7 @@ AudioOutputPlugin shoutPlugin = NULL, NULL, NULL, + NULL, NULL }; |