summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--stream/stream_cb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stream/stream_cb.c b/stream/stream_cb.c
index 4496e63255..fdef517bb8 100644
--- a/stream/stream_cb.c
+++ b/stream/stream_cb.c
@@ -31,7 +31,7 @@ static int fill_buffer(stream_t *s, char *buffer, int max_len)
static int seek(stream_t *s, int64_t newpos)
{
struct priv *p = s->priv;
- return (int)p->info.seek_fn(p->info.cookie, newpos) >= 0;
+ return p->info.seek_fn(p->info.cookie, newpos) >= 0;
}
static int control(stream_t *s, int cmd, void *arg)