From 2f4ea30d964660dbdc760027a28e23c5a2ef4409 Mon Sep 17 00:00:00 2001 From: Ben Gras Date: Mon, 5 Oct 2009 16:40:21 +0000 Subject: [PATCH] fix compiler warning --- lib/syslib/vm_allocmem.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/syslib/vm_allocmem.c b/lib/syslib/vm_allocmem.c index 725ac54ce..a277fcf7d 100644 --- a/lib/syslib/vm_allocmem.c +++ b/lib/syslib/vm_allocmem.c @@ -11,7 +11,7 @@ PUBLIC int vm_allocmem(phys_clicks bytes, phys_clicks *retmembase) message m; int result; - m.VMAM_BYTES = bytes; + m.VMAM_BYTES = (char *) bytes; result = _taskcall(VM_PROC_NR, VM_ALLOCMEM, &m); if(result == OK) *retmembase = m.VMAM_MEMBASE; -- 2.44.0