Skip to content
Snippets Groups Projects
Commit 42932b8d authored by Fred Wright's avatar Fred Wright Committed by Christopher Nielsen
Browse files

test_pthread_get_stacksize_np: Fix incorrect message.

TESTED:
Message is now correct.
parent f1488bae
No related branches found
No related tags found
No related merge requests found
......@@ -46,7 +46,7 @@ int main()
assert( stack_size_thread == stack_size_detached && "Unknown Error, non-main threads are assumed to have the same stack size" );
assert( stack_size_main > stack_size_thread && "Default stack size for main thread is the same as the default stack size of non-main threads" );
printf("Stack size for the non-main thread (%zu) is larger than for non-main threads (%zu), which is expected.\n", stack_size_main, stack_size_thread);
printf("Stack size for the main thread (%zu) is larger than for non-main threads (%zu), which is expected.\n", stack_size_main, stack_size_thread);
return 0;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment