mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
In the fueword64(9) wrapper for architectures which do not implemented
native fueword64(9) still, use proper type for local where fuword64() result is stored. Note that fueword64() is unused in the tree. Submitted by: Chunhui He <hchunhui@mail.ustc.edu.cn> PR: 212520 MFC after: 1 week
This commit is contained in:
parent
d24ac5fb28
commit
55ee7a4c5f
1 changed files with 1 additions and 1 deletions
|
|
@ -532,7 +532,7 @@ fueword32(volatile const void *base, int32_t *val)
|
|||
int
|
||||
fueword64(volatile const void *base, int64_t *val)
|
||||
{
|
||||
int32_t res;
|
||||
int64_t res;
|
||||
|
||||
res = fuword64(base);
|
||||
if (res == -1)
|
||||
|
|
|
|||
Loading…
Reference in a new issue