diff options
author | Max Kellermann <max@duempel.org> | 2008-10-17 17:53:59 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-10-17 17:53:59 +0200 |
commit | 4984639b7255d72e272f278c95adb1a2cf71b61c (patch) | |
tree | 4751fbdef706d62b77d41c411462fbf6f852f384 /src/decoder_api.c | |
parent | b73ecbb073625b56aaef33f2fa7f102fdc9a6247 (diff) | |
download | mpd-4984639b7255d72e272f278c95adb1a2cf71b61c.tar.gz mpd-4984639b7255d72e272f278c95adb1a2cf71b61c.tar.xz mpd-4984639b7255d72e272f278c95adb1a2cf71b61c.zip |
input_stream: removed nmemb argument
The nmemb argument isn't actually useful, and one of nmemb and size
was always passed as 1. Remove it.
Diffstat (limited to '')
-rw-r--r-- | src/decoder_api.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/decoder_api.c b/src/decoder_api.c index 933ee7106..8175fbac8 100644 --- a/src/decoder_api.c +++ b/src/decoder_api.c @@ -115,7 +115,7 @@ size_t decoder_read(struct decoder *decoder, dc.command != DECODE_COMMAND_NONE) return 0; - nbytes = readFromInputStream(inStream, buffer, 1, length); + nbytes = readFromInputStream(inStream, buffer, length); if (nbytes > 0 || inputStreamAtEOF(inStream)) return nbytes; |