aboutsummaryrefslogtreecommitdiffstats
path: root/arch/um/os-Linux/elf_aux.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/um/os-Linux/elf_aux.c')
-rw-r--r--arch/um/os-Linux/elf_aux.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/um/os-Linux/elf_aux.c b/arch/um/os-Linux/elf_aux.c
index 1399520a8588..e770cb029578 100644
--- a/arch/um/os-Linux/elf_aux.c
+++ b/arch/um/os-Linux/elf_aux.c
@@ -54,7 +54,8 @@ __init void scan_elf_aux( char **envp)
54 * a_un, so we have to use a_val, which is 54 * a_un, so we have to use a_val, which is
55 * all that's left. 55 * all that's left.
56 */ 56 */
57 elf_aux_platform = (char *) auxv->a_un.a_val; 57 elf_aux_platform =
58 (char *) (long) auxv->a_un.a_val;
58 break; 59 break;
59 case AT_PAGESZ: 60 case AT_PAGESZ:
60 page_size = auxv->a_un.a_val; 61 page_size = auxv->a_un.a_val;