summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAustin Foxley <austinf@cetoncorp.com>2009-11-29 17:02:43 -0800
committerAustin Foxley <austinf@cetoncorp.com>2009-11-29 17:15:36 -0800
commit98f2724767551b9644f17e586356d2211172c8d7 (patch)
treee47b0533ee23e56dbac45753ced833e6c16dace2 /test
parent263d2b8c93c3447115e15944ffec34991077d0c3 (diff)
test/dlopen: Match the function name that libtest actually sets
Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
Diffstat (limited to 'test')
-rw-r--r--test/dlopen/dltest.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/dlopen/dltest.c b/test/dlopen/dltest.c
index 6bec6e00e..b5fa1cdd7 100644
--- a/test/dlopen/dltest.c
+++ b/test/dlopen/dltest.c
@@ -25,7 +25,7 @@ int main(int argc, char **argv)
}
mydltest(&value1, &value2);
- printf("dltest: __pthread_once=%p\n", value1);
+ printf("dltest: pthread_once=%p\n", value1);
printf("dltest: pthread_self=%p\n", value2);
if (value1 == value2) {
ret = EXIT_FAILURE;