diff options
author | Jeff Dike <jdike@addtoit.com> | 2005-09-16 22:27:48 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-17 14:50:00 -0400 |
commit | 64b7673f91c0c3614028c5942b0d6a91d0b64a98 (patch) | |
tree | 7fd0f41a2b9f54bba8a760fdf16e2d08f9442dc8 /arch/um/os-Linux/aio.c | |
parent | d9f0d9151083a9a77331a020a7fee498cf828e3b (diff) |
[PATCH] uml: Remove some build warnings
These ugly double-casts are the result of gdb complaining about size
Signed-off-by: Jeff Dike <jdike@addtoit.com>
Cc: Paolo Giarrusso <blaisorblade@yahoo.it>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/um/os-Linux/aio.c')
-rw-r--r-- | arch/um/os-Linux/aio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/um/os-Linux/aio.c b/arch/um/os-Linux/aio.c index b04897cd995d..182905be869e 100644 --- a/arch/um/os-Linux/aio.c +++ b/arch/um/os-Linux/aio.c | |||
@@ -142,7 +142,7 @@ static int aio_thread(void *arg) | |||
142 | "errno = %d\n", errno); | 142 | "errno = %d\n", errno); |
143 | } | 143 | } |
144 | else { | 144 | else { |
145 | aio = (struct aio_context *) event.data; | 145 | aio = (struct aio_context *) (long) event.data; |
146 | if(update_aio(aio, event.res)){ | 146 | if(update_aio(aio, event.res)){ |
147 | do_aio(ctx, aio); | 147 | do_aio(ctx, aio); |
148 | continue; | 148 | continue; |