summaryrefslogtreecommitdiff
path: root/dlfcn/tst-rec-dlopen.c
diff options
context:
space:
mode:
Diffstat (limited to 'dlfcn/tst-rec-dlopen.c')
-rw-r--r--dlfcn/tst-rec-dlopen.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/dlfcn/tst-rec-dlopen.c b/dlfcn/tst-rec-dlopen.c
index 01353fbc86..b2a35a7e20 100644
--- a/dlfcn/tst-rec-dlopen.c
+++ b/dlfcn/tst-rec-dlopen.c
@@ -1,5 +1,5 @@
/* Test recursive dlopen using malloc hooks.
- Copyright (C) 2015 Free Software Foundation, Inc.
+ Copyright (C) 2015-2016 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
@@ -57,7 +57,7 @@ call_func (const char *dso_name, const char *func_name)
dlerror ();
/* Lookup func. */
- *(void **) (&func) = dlsym (dso, func_name);
+ func = (int (*) (void)) dlsym (dso, func_name);
if (func == NULL)
{
err = dlerror ();