Commit a150663e authored by Avuton Olrich's avatar Avuton Olrich

Remove useless buffer signedness warnings, use

void * rather than "x char *" git-svn-id: https://svn.musicpd.org/mpd/trunk@4408 09075e82-0dd4-0310-85a5-a0d7c8717e4f
parent c7c8bd43
...@@ -63,7 +63,7 @@ void flushOutputBuffer(OutputBuffer * cb) { ...@@ -63,7 +63,7 @@ void flushOutputBuffer(OutputBuffer * cb) {
} }
int sendDataToOutputBuffer(OutputBuffer * cb, InputStream * inStream, int sendDataToOutputBuffer(OutputBuffer * cb, InputStream * inStream,
DecoderControl * dc, int seekable, char * dataIn, DecoderControl * dc, int seekable, void * dataIn,
long dataInLen, float time, mpd_uint16 bitRate, long dataInLen, float time, mpd_uint16 bitRate,
ReplayGainInfo * replayGainInfo) ReplayGainInfo * replayGainInfo)
{ {
......
...@@ -56,7 +56,7 @@ int sendDataToOutputBuffer( ...@@ -56,7 +56,7 @@ int sendDataToOutputBuffer(
InputStream * inStream, InputStream * inStream,
DecoderControl * dc, DecoderControl * dc,
int seekable, int seekable,
char * data, void * data,
long datalen, long datalen,
float time, float time,
mpd_uint16 bitRate, mpd_uint16 bitRate,
......
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