diff options
author | Mike Frysinger <vapier@gentoo.org> | 2009-07-21 23:13:46 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2009-07-21 23:13:46 -0400 |
commit | 44bc29e4f3bf4310fabbed3b187bc0aad8827db0 (patch) | |
tree | 5f8acd6f49dbbe33ccb4c4ca6a3d38a129a71529 /libpthread/linuxthreads.old/manager.c | |
parent | 6ca56dd4d711c731d010c484c20384097615f6cd (diff) |
libpthread: add format attribute to __pthread_message()
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'libpthread/linuxthreads.old/manager.c')
-rw-r--r-- | libpthread/linuxthreads.old/manager.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libpthread/linuxthreads.old/manager.c b/libpthread/linuxthreads.old/manager.c index 88c92533e..52c1ea9b6 100644 --- a/libpthread/linuxthreads.old/manager.c +++ b/libpthread/linuxthreads.old/manager.c @@ -198,7 +198,7 @@ int attribute_noreturn __pthread_manager(void *arg) request.req_thread->p_pid, request.req_thread->p_report_events, &request.req_thread->p_eventbuf.eventmask); - PDEBUG("restarting %d\n", request.req_thread); + PDEBUG("restarting %p\n", request.req_thread); restart(request.req_thread); break; case REQ_FREE: @@ -206,7 +206,7 @@ int attribute_noreturn __pthread_manager(void *arg) pthread_handle_free(request.req_args.free.thread_id); break; case REQ_PROCESS_EXIT: - PDEBUG("got REQ_PROCESS_EXIT from %d, exit code = %d\n", + PDEBUG("got REQ_PROCESS_EXIT from %p, exit code = %d\n", request.req_thread, request.req_args.exit.code); pthread_handle_exit(request.req_thread, request.req_args.exit.code); |