Pass in the uint64 value, rather than a pointer to it. that's what

the function expects...
This commit is contained in:
Warner Losh 2009-07-06 07:46:13 +00:00
parent e3c2111d5c
commit 025e48c64c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/projects/mips/; revision=195396

View File

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