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.h | |
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 '')
-rw-r--r-- | src/outputBuffer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/outputBuffer.h b/src/outputBuffer.h index 81b1c5cbb..7e37dd430 100644 --- a/src/outputBuffer.h +++ b/src/outputBuffer.h @@ -56,7 +56,7 @@ int sendDataToOutputBuffer( InputStream * inStream, DecoderControl * dc, int seekable, - char * data, + void * data, long datalen, float time, mpd_uint16 bitRate, |