diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2006-03-29 21:49:58 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2006-03-29 21:49:58 +0000 |
commit | fac690bef7c369ea89d7d1dfdfa0c9f5ce9d9935 (patch) | |
tree | 4ee34fa07ca5153569345bba7a8651092d090163 /newlib | |
parent | 9e443adbaf40e9b0f5dd7593c5021605f0f129a7 (diff) | |
download | cygnal-fac690bef7c369ea89d7d1dfdfa0c9f5ce9d9935.tar.gz cygnal-fac690bef7c369ea89d7d1dfdfa0c9f5ce9d9935.tar.bz2 cygnal-fac690bef7c369ea89d7d1dfdfa0c9f5ce9d9935.zip |
2006-03-29 Jeff Johnston <jjohnstn@redhat.com>
* libc/sys/linux/io.c (__mknod): Fix declaration of
syscall to pass a dev_t as third argument rather than
a pointer to dev_t.
Diffstat (limited to 'newlib')
-rw-r--r-- | newlib/ChangeLog | 6 | ||||
-rw-r--r-- | newlib/libc/sys/linux/io.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog index bd3012cd3..af9076f5c 100644 --- a/newlib/ChangeLog +++ b/newlib/ChangeLog @@ -1,5 +1,11 @@ 2006-03-29 Jeff Johnston <jjohnstn@redhat.com> + * libc/sys/linux/io.c (__mknod): Fix declaration of + syscall to pass a dev_t as third argument rather than + a pointer to dev_t. + +2006-03-29 Jeff Johnston <jjohnstn@redhat.com> + * libc/sys/linux/net/name6.c: Fix struct references. 2006-03-22 Mark Mitchell <mark@codesourcery.com> diff --git a/newlib/libc/sys/linux/io.c b/newlib/libc/sys/linux/io.c index d6731144a..1fe1bbcfc 100644 --- a/newlib/libc/sys/linux/io.c +++ b/newlib/libc/sys/linux/io.c @@ -65,7 +65,7 @@ int flock(int fd,int operation) #if !defined(_ELIX_LEVEL) || _ELIX_LEVEL >= 3 -static _syscall3(int,__mknod,const char *,path,mode_t,mode,dev_t *,dev) +static _syscall3(int,__mknod,const char *,path,mode_t,mode,dev_t,dev) int mkfifo(const char *path, mode_t mode) { |