From a704c216bacc5bd0ac3894fe72f8cf66839b6191 Mon Sep 17 00:00:00 2001 From: kub Date: Mon, 8 Nov 2021 18:19:49 +0100 Subject: [PATCH] mcd, fix type for memory setup (fixes LLP64 platforms) --- pico/cd/memory.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pico/cd/memory.c b/pico/cd/memory.c index 05ee3e13..c51ba1f6 100644 --- a/pico/cd/memory.c +++ b/pico/cd/memory.c @@ -1185,7 +1185,7 @@ PICO_INTERNAL void PicoMemSetupCD(void) #ifdef __clang__ volatile // prevent strange relocs from clang #endif - unsigned long ptr_ram = (uptr)PicoMem.ram; + uptr ptr_ram = (uptr)PicoMem.ram; int i; // M68k -- 2.39.2