From a108d7439b9d8010d0bdbbdfe3a0379c0a7bc2b8 Mon Sep 17 00:00:00 2001 From: blueswirl Date: Sun, 2 Aug 2009 12:28:24 +0000 Subject: [PATCH] Fix compile when CONFIG_DEBUG_SUN_PARTS is defined Signed-off-by: Blue Swirl git-svn-id: svn://openbios.org/openbios/trunk/openbios-devel@529 f158a5a8-5612-0410-a976-696ce0be7e32 --- modules/sun-parts.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/sun-parts.c b/modules/sun-parts.c index 2f00052..057a701 100644 --- a/modules/sun-parts.c +++ b/modules/sun-parts.c @@ -146,7 +146,8 @@ sunparts_open( sunparts_info_t *di ) di->size_hi = size >> BITS; di->size_lo = size & (ucell) -1; 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 ); } -- 2.11.4.GIT