From 95f8b9fd90e72abe2c3c1451e9dad54cf879d9f1 Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Mon, 21 Mar 2011 20:52:11 +1100 Subject: [PATCH] Forgot return value. --- stream.c | 1 + 1 file changed, 1 insertion(+) diff --git a/stream.c b/stream.c index d7145ad..771699f 100644 --- a/stream.c +++ b/stream.c @@ -833,6 +833,7 @@ static inline int read_val(rzip_control *control, int f, i64 *v, int len) *v = 0; ret = read_buf(control, f, (uchar *)v, len); *v = le64toh(*v); + return ret; } static int fd_seekto(rzip_control *control, struct stream_info *sinfo, i64 spos, i64 pos)