提交 64b7673f 编写于 作者: J Jeff Dike 提交者: Linus Torvalds

[PATCH] uml: Remove some build warnings

These ugly double-casts are the result of gdb complaining about size
Signed-off-by: NJeff Dike <jdike@addtoit.com>
Cc: Paolo Giarrusso <blaisorblade@yahoo.it>
Signed-off-by: NAndrew Morton <akpm@osdl.org>
Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
上级 d9f0d915
...@@ -142,7 +142,7 @@ static int aio_thread(void *arg) ...@@ -142,7 +142,7 @@ static int aio_thread(void *arg)
"errno = %d\n", errno); "errno = %d\n", errno);
} }
else { else {
aio = (struct aio_context *) event.data; aio = (struct aio_context *) (long) event.data;
if(update_aio(aio, event.res)){ if(update_aio(aio, event.res)){
do_aio(ctx, aio); do_aio(ctx, aio);
continue; continue;
......
...@@ -9,6 +9,7 @@ ...@@ -9,6 +9,7 @@
*/ */
#include <elf.h> #include <elf.h>
#include <stddef.h> #include <stddef.h>
#include <asm/elf.h>
#include "init.h" #include "init.h"
#include "elf_user.h" #include "elf_user.h"
#include "mem_user.h" #include "mem_user.h"
...@@ -54,7 +55,8 @@ __init void scan_elf_aux( char **envp) ...@@ -54,7 +55,8 @@ __init void scan_elf_aux( char **envp)
* a_un, so we have to use a_val, which is * a_un, so we have to use a_val, which is
* all that's left. * all that's left.
*/ */
elf_aux_platform = (char *) auxv->a_un.a_val; elf_aux_platform =
(char *) (long) auxv->a_un.a_val;
break; break;
case AT_PAGESZ: case AT_PAGESZ:
page_size = auxv->a_un.a_val; page_size = auxv->a_un.a_val;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册