diff options
author | Kurt Miller <kurt@cvs.openbsd.org> | 2007-05-21 16:50:37 +0000 |
---|---|---|
committer | Kurt Miller <kurt@cvs.openbsd.org> | 2007-05-21 16:50:37 +0000 |
commit | 668beb1868c18b6799bec2b2d0f7bcd89d83bc3e (patch) | |
tree | 7bf550f26b76a34c2ba4f27cc062a4ab30934d99 /lib/libpthread/uthread/uthread_info_openbsd.c | |
parent | cc246595189a9f74890891e5196b05e23ce742a0 (diff) |
clean up lint warnings related to the nfds_t type. okay marc@ millert@
Diffstat (limited to 'lib/libpthread/uthread/uthread_info_openbsd.c')
-rw-r--r-- | lib/libpthread/uthread/uthread_info_openbsd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libpthread/uthread/uthread_info_openbsd.c b/lib/libpthread/uthread/uthread_info_openbsd.c index 37acbaa2a1c..b33378f5707 100644 --- a/lib/libpthread/uthread/uthread_info_openbsd.c +++ b/lib/libpthread/uthread/uthread_info_openbsd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uthread_info_openbsd.c,v 1.14 2007/05/18 19:28:50 kurt Exp $ */ +/* $OpenBSD: uthread_info_openbsd.c,v 1.15 2007/05/21 16:50:36 kurt Exp $ */ /* * Copyright (c) 1995-1998 John Birrell <jb@cimlogic.com.au> @@ -269,7 +269,7 @@ _thread_dump_entry(pthread_t pthread, int fd, int verbose) case PS_SELECT_WAIT: case PS_POLL_WAIT: { - int i; + nfds_t i; for (i = 0; i < pthread->data.poll_data->nfds; i++) snprintf(s, sizeof(s), "%s%d:%s%s", |