From: Roland McGrath Date: Mon, 8 Mar 2004 20:38:11 +0000 (+0000) Subject: 2004-03-08 Jeroen Dekkers X-Git-Tag: cvs/fedora-base~711 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=32c6ecbad33efed70dc432c1f50616dbfdb86f80;p=thirdparty%2Fglibc.git 2004-03-08 Jeroen Dekkers * sysdeps/mach/hurd/dl-sysdep.c (_dl_important_hwcaps): Don't use INTUSE with _dl_signal_error. --- diff --git a/sysdeps/mach/hurd/dl-sysdep.c b/sysdeps/mach/hurd/dl-sysdep.c index ec3bfdb8350..c9fe5fcecc5 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;