ar: use array notation to access s_so
This is somewhat more readable than pointer arithmetic. Also remove an unnecessary cast while here. MFC after: 1 week Sponsored by: The FreeBSD Foundation
This commit is contained in:
parent
3133f7d0ab
commit
638f399f3c
@ -673,11 +673,11 @@ write_objs(struct bsdar *bsdar)
|
||||
|
||||
for (i = 0; (size_t)i < bsdar->s_cnt; i++) {
|
||||
if (w_sz == sizeof(uint32_t))
|
||||
*(bsdar->s_so + i) =
|
||||
htobe32((uint32_t)(*(bsdar->s_so + i)) + pm_sz);
|
||||
bsdar->s_so[i] =
|
||||
htobe32(bsdar->s_so[i] + pm_sz);
|
||||
else
|
||||
*(bsdar->s_so + i) =
|
||||
htobe64(*(bsdar->s_so + i) + pm_sz);
|
||||
bsdar->s_so[i] =
|
||||
htobe64(bsdar->s_so[i] + pm_sz);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user