From e6574c9ca263afb7d408dd5ebf09ad8cb0178469 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Tue, 18 Jul 2000 17:18:38 +0000 Subject: Update. 2000-07-18 Kaz Kylheku * spinlock.c (__pthread_alt_lock, __pthread_alt_timedlock): Fixed bug whereby thr field of waitnode structure would not be correctly set unless a null self pointer is passed to the functions. Eliminated redundant calls to thread_self(). --- dlfcn/dlopen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dlfcn/dlopen.c') diff --git a/dlfcn/dlopen.c b/dlfcn/dlopen.c index 76636fdba4..dae0b5880e 100644 --- a/dlfcn/dlopen.c +++ b/dlfcn/dlopen.c @@ -46,7 +46,7 @@ __dlopen_check (const char *file, int mode) struct dlopen_args args; args.file = file; args.mode = mode; - args.caller = __builtin_return_address (0); + args.caller = RETURN_ADDRESS (0); return _dlerror_run (dlopen_doit, &args) ? NULL : args.new; } -- cgit v1.2.3-65-gdbad