diff options
author | Roland McGrath <roland@gnu.org> | 2004-03-08 20:38:11 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2004-03-08 20:38:11 +0000 |
commit | 32c6ecbad33efed70dc432c1f50616dbfdb86f80 (patch) | |
tree | 56a1803ebc03cd15568a424e65ac5398f150f8e3 /sysdeps/mach | |
parent | d4acd24b606c3706ec1d96f73e41d4f98624b127 (diff) | |
download | glibc-32c6ecbad33efed70dc432c1f50616dbfdb86f80.tar glibc-32c6ecbad33efed70dc432c1f50616dbfdb86f80.tar.gz glibc-32c6ecbad33efed70dc432c1f50616dbfdb86f80.tar.bz2 glibc-32c6ecbad33efed70dc432c1f50616dbfdb86f80.zip |
2004-03-08 Jeroen Dekkers <jeroen@dekkers.cx>
* sysdeps/mach/hurd/dl-sysdep.c (_dl_important_hwcaps):
Don't use INTUSE with _dl_signal_error.
Diffstat (limited to 'sysdeps/mach')
-rw-r--r-- | sysdeps/mach/hurd/dl-sysdep.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sysdeps/mach/hurd/dl-sysdep.c b/sysdeps/mach/hurd/dl-sysdep.c index ec3bfdb835..c9fe5fcecc 100644 --- a/sysdeps/mach/hurd/dl-sysdep.c +++ b/sysdeps/mach/hurd/dl-sysdep.c @@ -649,8 +649,7 @@ _dl_important_hwcaps (const char *platform, size_t platform_len, size_t *sz, /* Return an empty array. Hurd has no hardware capabilities. */ result = (struct r_strlenpair *) malloc (sizeof (*result)); if (result == NULL) - INTUSE (_dl_signal_error) (ENOMEM, NULL, NULL, - "cannot create capability list"); + _dl_signal_error (ENOMEM, NULL, NULL, "cannot create capability list"); result[0].str = (char *) result; /* Does not really matter. */ result[0].len = 0; |