diff options
author | Austin Foxley <austinf@cetoncorp.com> | 2009-11-29 17:02:43 -0800 |
---|---|---|
committer | Austin Foxley <austinf@cetoncorp.com> | 2009-11-29 17:22:42 -0800 |
commit | b5ac6f44b0278f12018d61bed313a74ff691ef9b (patch) | |
tree | 70c42ce9e98e34c559b86a4f855814dae798ae03 /test | |
parent | 5137b8964e8fa06ab11b3f65cfa52154d0e25b02 (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.c | 2 |
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; |