mirror of https://github.com/xemu-project/xemu.git
removed warning
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4539 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
b67d9a52d4
commit
ed44146780
4
exec.c
4
exec.c
|
@ -2143,8 +2143,8 @@ ram_addr_t qemu_ram_alloc(ram_addr_t size)
|
||||||
{
|
{
|
||||||
ram_addr_t addr;
|
ram_addr_t addr;
|
||||||
if ((phys_ram_alloc_offset + size) > phys_ram_size) {
|
if ((phys_ram_alloc_offset + size) > phys_ram_size) {
|
||||||
fprintf(stderr, "Not enough memory (requested_size = %lu, max memory = %ld)\n",
|
fprintf(stderr, "Not enough memory (requested_size = %" PRIu64 ", max memory = %" PRIu64 "\n",
|
||||||
size, phys_ram_size);
|
(uint64_t)size, (uint64_t)phys_ram_size);
|
||||||
abort();
|
abort();
|
||||||
}
|
}
|
||||||
addr = phys_ram_alloc_offset;
|
addr = phys_ram_alloc_offset;
|
||||||
|
|
Loading…
Reference in New Issue