about summary refs log tree commit diff
path: root/sysdeps/powerpc
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2004-03-08 19:35:36 +0000
committerUlrich Drepper <drepper@redhat.com>2004-03-08 19:35:36 +0000
commit8acb4b81f685b57fb55e884b73b515f9b9aa0ace (patch)
treeb04c4d65864a326323b1051354caaf0cbddf1575 /sysdeps/powerpc
parent3d96c0d8ee1d6305dfade404b84af1b633a9f2e7 (diff)
downloadglibc-8acb4b81f685b57fb55e884b73b515f9b9aa0ace.tar.gz
glibc-8acb4b81f685b57fb55e884b73b515f9b9aa0ace.tar.xz
glibc-8acb4b81f685b57fb55e884b73b515f9b9aa0ace.zip
Update.
2004-03-08  Ulrich Drepper  <drepper@redhat.com>

	* sysdeps/powerpc/powerpc64/dl-machine.c (_dl_reloc_overflow):
	Don't use INTUSE with _dl_signal_error.

2004-03-08  Steven Munroe  <sjmunroe@us.ibm.com>

	* sysdeps/powerpc/powerpc64/dl-machine.c(_dl_reloc_overflow): Replace
	INTUSE with GLRO.
Diffstat (limited to 'sysdeps/powerpc')
-rw-r--r--sysdeps/powerpc/powerpc64/dl-machine.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/powerpc/powerpc64/dl-machine.c b/sysdeps/powerpc/powerpc64/dl-machine.c
index 167af998a7..6d9a585d22 100644
--- a/sysdeps/powerpc/powerpc64/dl-machine.c
+++ b/sysdeps/powerpc/powerpc64/dl-machine.c
@@ -1,5 +1,5 @@
 /* Machine-dependent ELF dynamic relocation functions.  PowerPC64 version.
-   Copyright (C) 1995-2002, 2003 Free Software Foundation, Inc.
+   Copyright (C) 1995-2002, 2003, 2004 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -44,5 +44,5 @@ _dl_reloc_overflow (struct link_map *map,
       t = stpcpy (t, "'");
     }
   t = stpcpy (t, " out of range");
-  INTUSE (_dl_signal_error) (0, map->l_name, NULL, buffer);
+  _dl_signal_error (0, map->l_name, NULL, buffer);
 }