From: Austin Foxley Date: Mon, 30 Nov 2009 01:02:43 +0000 (-0800) Subject: test/dlopen: Match the function name that libtest actually sets X-Git-Url: http://git.sourceforge.jp/view?a=commitdiff_plain;h=b5ac6f44b0278f12018d61bed313a74ff691ef9b;p=uclinux-h8%2FuClibc.git test/dlopen: Match the function name that libtest actually sets Signed-off-by: Austin Foxley --- 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;