Commit c8f04457 authored by Warren Dukes's avatar Warren Dukes

fix some compilation warning

git-svn-id: https://svn.musicpd.org/mpd/trunk@3013 09075e82-0dd4-0310-85a5-a0d7c8717e4f
parent 92653f84
...@@ -361,7 +361,7 @@ static void myShout_finishDriver(AudioOutput * audioOutput) { ...@@ -361,7 +361,7 @@ static void myShout_finishDriver(AudioOutput * audioOutput) {
if(shoutInitCount == 0) shout_shutdown(); if(shoutInitCount == 0) shout_shutdown();
} }
static void myShout_dropBufferedAudioDevice(AudioOutput * audioOutput) { static void myShout_dropBufferedAudio(AudioOutput * audioOutput) {
// needs to be implemented // needs to be implemented
} }
...@@ -601,6 +601,7 @@ AudioOutputPlugin shoutPlugin = ...@@ -601,6 +601,7 @@ AudioOutputPlugin shoutPlugin =
myShout_finishDriver, myShout_finishDriver,
myShout_openDevice, myShout_openDevice,
myShout_play, myShout_play,
myShout_dropBufferedAudio,
myShout_closeDevice, myShout_closeDevice,
myShout_setTag myShout_setTag
}; };
...@@ -615,6 +616,7 @@ AudioOutputPlugin shoutPlugin = ...@@ -615,6 +616,7 @@ AudioOutputPlugin shoutPlugin =
NULL, NULL,
NULL, NULL,
NULL, NULL,
NULL,
NULL NULL
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment