diff options
author | David Leonard <d@cvs.openbsd.org> | 1998-11-20 12:13:33 +0000 |
---|---|---|
committer | David Leonard <d@cvs.openbsd.org> | 1998-11-20 12:13:33 +0000 |
commit | d5a877b31b8aa64095b3ccba2dadc3f45ba6c88b (patch) | |
tree | efa55bed35e52415146a7a9bf15203ace814b7ac /lib/libc_r/uthread/uthread_info.c | |
parent | f547068f88348f54941dc06da46491f99701933e (diff) |
sync with freebsd
Diffstat (limited to 'lib/libc_r/uthread/uthread_info.c')
-rw-r--r-- | lib/libc_r/uthread/uthread_info.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libc_r/uthread/uthread_info.c b/lib/libc_r/uthread/uthread_info.c index 9db574e7521..6a863f9463a 100644 --- a/lib/libc_r/uthread/uthread_info.c +++ b/lib/libc_r/uthread/uthread_info.c @@ -96,10 +96,10 @@ _thread_dump_info(void) /* Output a record for the current thread: */ snprintf(s, sizeof(s), "--------------------\nThread %p (%s) prio %3d state %s [%s:%d]\n", - pthread, (pthread->name == NULL) ? - "":pthread->name, pthread->pthread_priority, - thread_info[j].name, - pthread->fname,pthread->lineno); + pthread, (pthread->name == NULL) ? + "":pthread->name, pthread->pthread_priority, + thread_info[j].name, + pthread->fname,pthread->lineno); _thread_sys_write(fd, s, strlen(s)); /* Check if this is the running thread: */ |