Browse Source

test/dlopen: Match the function name that libtest actually sets

Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
Austin Foxley 15 years ago
parent
commit
b5ac6f44b0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      test/dlopen/dltest.c

+ 1 - 1
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;