diff options
author | Avuton Olrich <avuton@gmail.com> | 2006-07-19 19:41:59 +0000 |
---|---|---|
committer | Avuton Olrich <avuton@gmail.com> | 2006-07-19 19:41:59 +0000 |
commit | a150663e713395ab0ff0ea71c54ee77bee6b499c (patch) | |
tree | a919450aa5ef8a1ac22ee36347079a4373f463db /src/outputBuffer.c | |
parent | c7c8bd43dbd46626f8ed09a3f14f5a0a21347edc (diff) | |
download | mpd-a150663e713395ab0ff0ea71c54ee77bee6b499c.tar.gz mpd-a150663e713395ab0ff0ea71c54ee77bee6b499c.tar.xz mpd-a150663e713395ab0ff0ea71c54ee77bee6b499c.zip |
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
Diffstat (limited to 'src/outputBuffer.c')
-rw-r--r-- | src/outputBuffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/outputBuffer.c b/src/outputBuffer.c index d1f66f6dc..52547af6c 100644 --- a/src/outputBuffer.c +++ b/src/outputBuffer.c @@ -63,7 +63,7 @@ void flushOutputBuffer(OutputBuffer * cb) { } 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, ReplayGainInfo * replayGainInfo) { |