mirror of
https://github.com/ckolivas/lrzip.git
synced 2025-12-06 07:12:00 +01:00
Forgot return value.
This commit is contained in:
parent
135067a0b4
commit
95f8b9fd90
1
stream.c
1
stream.c
|
|
@ -833,6 +833,7 @@ static inline int read_val(rzip_control *control, int f, i64 *v, int len)
|
||||||
*v = 0;
|
*v = 0;
|
||||||
ret = read_buf(control, f, (uchar *)v, len);
|
ret = read_buf(control, f, (uchar *)v, len);
|
||||||
*v = le64toh(*v);
|
*v = le64toh(*v);
|
||||||
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int fd_seekto(rzip_control *control, struct stream_info *sinfo, i64 spos, i64 pos)
|
static int fd_seekto(rzip_control *control, struct stream_info *sinfo, i64 spos, i64 pos)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue