mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-04 18:59:37 +00:00
Pass in the uint64 value, rather than a pointer to it. that's what
the function expects...
This commit is contained in:
parent
e3c2111d5c
commit
025e48c64c
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/projects/mips/; revision=195396
@ -197,7 +197,7 @@ db_write_bytes(vm_offset_t addr, size_t size, char *data)
|
||||
break;
|
||||
case 8:
|
||||
atomic_store_64((volatile u_int64_t *)addr,
|
||||
(u_int64_t *)data);
|
||||
*(u_int64_t *)data);
|
||||
break;
|
||||
}
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user