diff options
author | Jeff Dike <[email protected]> | 2007-05-06 14:51:41 -0700 |
---|---|---|
committer | Linus Torvalds <[email protected]> | 2007-05-07 12:13:03 -0700 |
commit | fda83a99b2b49016b9d7ed562745969db25c4ef9 (patch) | |
tree | 45b6282e98841b8d608523a1df57d4a4c51c6965 /arch/um/sys-i386/bugs.c | |
parent | 77f6af778dc23514d897f4fdc7935329285ecb1b (diff) |
uml: change remaining callers of os_{read_write}_file
Convert all remaining os_{read_write}_file users to use the simple
{read,write} wrappers, os_{read_write}_file_k.
Signed-off-by: Jeff Dike <[email protected]>
Cc: Paolo 'Blaisorblade' Giarrusso <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
Diffstat (limited to 'arch/um/sys-i386/bugs.c')
-rw-r--r-- | arch/um/sys-i386/bugs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/um/sys-i386/bugs.c b/arch/um/sys-i386/bugs.c index 74fd062b201b..f5dfe49c8442 100644 --- a/arch/um/sys-i386/bugs.c +++ b/arch/um/sys-i386/bugs.c @@ -28,7 +28,7 @@ static char token(int fd, char *buf, int len, char stop) ptr = buf; end = &buf[len]; do { - n = os_read_file(fd, ptr, sizeof(*ptr)); + n = os_read_file_k(fd, ptr, sizeof(*ptr)); c = *ptr++; if(n != sizeof(*ptr)){ if(n == 0) |