Forgot return value.

This commit is contained in:
Con Kolivas 2011-03-21 20:52:11 +11:00
parent 135067a0b4
commit 95f8b9fd90

View file

@ -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)