mirror of
https://gitlab.com/qemu-project/openbios.git
synced 2024-02-13 08:34:06 +08:00
Fix compile when CONFIG_DEBUG_SUN_PARTS is defined
Signed-off-by: Blue Swirl <blauwirbel@gmail.com> git-svn-id: svn://coreboot.org/openbios/trunk/openbios-devel@529 f158a5a8-5612-0410-a976-696ce0be7e32
This commit is contained in:
@@ -146,7 +146,8 @@ sunparts_open( sunparts_info_t *di )
|
|||||||
di->size_hi = size >> BITS;
|
di->size_hi = size >> BITS;
|
||||||
di->size_lo = size & (ucell) -1;
|
di->size_lo = size & (ucell) -1;
|
||||||
di->type = __be32_to_cpu(p->infos[parnum].id);
|
di->type = __be32_to_cpu(p->infos[parnum].id);
|
||||||
DPRINTF("Found Sun partition table, offs %lld size %lld\n", offs, size);
|
DPRINTF("Found Sun partition table, offs %lld size %lld\n",
|
||||||
|
(llong)offs, (llong)size);
|
||||||
|
|
||||||
RET( -1 );
|
RET( -1 );
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user