From 97d4f183775ea85760925d1e650d4b7324fd4798 Mon Sep 17 00:00:00 2001 From: Mark Pizzolato Date: Tue, 20 Nov 2012 04:59:29 -0800 Subject: [PATCH] Fix to properly format the CPU boot code load string on ARM platforms (Jordi Guillaumes i Pons) --- VAX/vax_cpu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VAX/vax_cpu.c b/VAX/vax_cpu.c index 8e5d6626..67971693 100644 --- a/VAX/vax_cpu.c +++ b/VAX/vax_cpu.c @@ -3471,7 +3471,7 @@ if (sim_log) if (rom) sprintf (args, "-R %s", filename); else - sprintf (args, "-O %s %X", filename, offset); + sprintf (args, "-O %s %X", filename, (int)offset); r = load_cmd (0, args); if (r != SCPE_OK) { if (builtin_code) {