diff options
Diffstat (limited to 'hw/core/stream.c')
-rw-r--r-- | hw/core/stream.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/core/stream.c b/hw/core/stream.c index 5397a8d74a..e6a05a543e 100644 --- a/hw/core/stream.c +++ b/hw/core/stream.c @@ -1,11 +1,11 @@ #include "hw/stream.h" size_t -stream_push(StreamSlave *sink, uint8_t *buf, size_t len, uint32_t *app) +stream_push(StreamSlave *sink, uint8_t *buf, size_t len) { StreamSlaveClass *k = STREAM_SLAVE_GET_CLASS(sink); - return k->push(sink, buf, len, app); + return k->push(sink, buf, len); } bool |