Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 9014
b: refs/heads/master
c: 64b7673
h: refs/heads/master
v: v3
  • Loading branch information
Jeff Dike authored and Linus Torvalds committed Sep 17, 2005
1 parent a1b1fe7 commit 2fb98fe
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: d9f0d9151083a9a77331a020a7fee498cf828e3b
refs/heads/master: 64b7673f91c0c3614028c5942b0d6a91d0b64a98
2 changes: 1 addition & 1 deletion trunk/arch/um/os-Linux/aio.c
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ static int aio_thread(void *arg)
"errno = %d\n", errno);
}
else {
aio = (struct aio_context *) event.data;
aio = (struct aio_context *) (long) event.data;
if(update_aio(aio, event.res)){
do_aio(ctx, aio);
continue;
Expand Down
4 changes: 3 additions & 1 deletion trunk/arch/um/os-Linux/elf_aux.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
*/
#include <elf.h>
#include <stddef.h>
#include <asm/elf.h>
#include "init.h"
#include "elf_user.h"
#include "mem_user.h"
Expand Down Expand Up @@ -54,7 +55,8 @@ __init void scan_elf_aux( char **envp)
* a_un, so we have to use a_val, which is
* all that's left.
*/
elf_aux_platform = (char *) auxv->a_un.a_val;
elf_aux_platform =
(char *) (long) auxv->a_un.a_val;
break;
case AT_PAGESZ:
page_size = auxv->a_un.a_val;
Expand Down

0 comments on commit 2fb98fe

Please sign in to comment.