From b480d9b74dfd1efd29026b7dc6438364a633ee99 Mon Sep 17 00:00:00 2001 From: Paul Brook Date: Fri, 12 Mar 2010 23:23:29 +0000 Subject: Fix usermode virtual address type Usermode virtual addresses are abi_ulong, not target_ulong. Signed-off-by: Paul Brook --- exec-all.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'exec-all.h') diff --git a/exec-all.h b/exec-all.h index 6c44d32f8..56e79771a 100644 --- a/exec-all.h +++ b/exec-all.h @@ -29,7 +29,7 @@ addresses in userspace mode. Define tb_page_addr_t to be an appropriate type. */ #if defined(CONFIG_USER_ONLY) -typedef target_ulong tb_page_addr_t; +typedef abi_ulong tb_page_addr_t; #else typedef ram_addr_t tb_page_addr_t; #endif -- cgit v1.2.3