diff options
author | Roland McGrath <roland@gnu.org> | 2005-12-29 10:38:16 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2005-12-29 10:38:16 +0000 |
commit | 8ad684db49bf9dc109c409cac38f744e3fa260c7 (patch) | |
tree | 85546bf32fa60dcf4fbb2b8b6bce9c3c313c3cb1 /hurd/lookup-retry.c | |
parent | fc0c638f9d70a8436e060922159f94049884ecf9 (diff) | |
download | glibc-8ad684db49bf9dc109c409cac38f744e3fa260c7.tar.gz glibc-8ad684db49bf9dc109c409cac38f744e3fa260c7.tar.xz glibc-8ad684db49bf9dc109c409cac38f744e3fa260c7.zip |
* sysdeps/posix/libc_fatal.c (__libc_message): Add a const, a cast.
* hurd/lookup-retry.c (__hurd_file_name_lookup_retry): Fix cast. * hurd/report-wait.c (_S_msg_report_wait): Likewise. * include/sys/xattr.h: New file.
Diffstat (limited to 'hurd/lookup-retry.c')
-rw-r--r-- | hurd/lookup-retry.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hurd/lookup-retry.c b/hurd/lookup-retry.c index 1f53f911a7..0a886229f0 100644 --- a/hurd/lookup-retry.c +++ b/hurd/lookup-retry.c @@ -1,5 +1,5 @@ /* hairy bits of Hurd file name lookup - Copyright (C) 1992,1993,1994,1995,1996,1997,1999,2001,2002,2003 + Copyright (C) 1992,1993,1994,1995,1996,1997,1999,2001,2002,2003,2005 Free Software Foundation, Inc. This file is part of the GNU C Library. @@ -247,7 +247,7 @@ __hurd_file_name_lookup_retry (error_t (*use_init_port) char *p; /* XXX want client's host */ if (err = __host_info (__mach_host_self (), HOST_BASIC_INFO, - (natural_t *) &hostinfo, + (integer_t *) &hostinfo, &hostinfocnt)) return err; if (hostinfocnt != HOST_BASIC_INFO_COUNT) |