From 776daae39d7c849bb2d52939910c656ef0a0ba13 Mon Sep 17 00:00:00 2001 From: deischen Date: Tue, 28 Mar 2006 21:07:59 +0000 Subject: Use the correct type for and argument. Recent changes to namespace.h exposed this bug. Reported by: kris --- lib/libpthread/thread/thr_barrier.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/libpthread') diff --git a/lib/libpthread/thread/thr_barrier.c b/lib/libpthread/thread/thr_barrier.c index ed54a99..c8be343 100644 --- a/lib/libpthread/thread/thr_barrier.c +++ b/lib/libpthread/thread/thr_barrier.c @@ -65,7 +65,7 @@ _pthread_barrier_destroy(pthread_barrier_t *barrier) int _pthread_barrier_init(pthread_barrier_t *barrier, - const pthread_barrierattr_t *attr, int count) + const pthread_barrierattr_t *attr, unsigned count) { pthread_barrier_t bar; int ret; -- cgit v1.1