aboutsummaryrefslogtreecommitdiff
path: root/src/boot.c
diff options
context:
space:
mode:
authorHelge Deller <deller@gmx.de>2024-01-03 00:08:29 +0100
committerHelge Deller <deller@gmx.de>2024-01-04 18:48:58 +0100
commit292ee73331f6f1e55122691a1b9bd59399a5c199 (patch)
tree021de4844bf2521861f461450beaa291a3a54ad4 /src/boot.c
parenta7efc718498cdbc1d547938bfbb308e177c45a8e (diff)
downloadseabios-hppa-292ee73331f6f1e55122691a1b9bd59399a5c199.zip
seabios-hppa-292ee73331f6f1e55122691a1b9bd59399a5c199.tar.gz
seabios-hppa-292ee73331f6f1e55122691a1b9bd59399a5c199.tar.bz2
parisc: Fix 64-bit firmware build
Signed-off-by: Helge Deller <deller@gmx.de>
Diffstat (limited to 'src/boot.c')
-rw-r--r--src/boot.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/boot.c b/src/boot.c
index cf1b2fe..6f79648 100644
--- a/src/boot.c
+++ b/src/boot.c
@@ -932,7 +932,7 @@ bcv_prepboot(void)
static void
call_boot_entry(struct segoff_s bootsegip, u8 bootdrv)
{
- dprintf(1, "Booting from %04x:%04x\n", bootsegip.seg, bootsegip.offset);
+ dprintf(1, "Booting from %04x:%04lx\n", bootsegip.seg, bootsegip.offset);
struct bregs br;
memset(&br, 0, sizeof(br));
br.flags = F_IF;