From 9708780004abee24d2c49fffe670820e36029377 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Mon, 22 Mar 2004 19:32:45 +0000 Subject: [PATCH] (__pthread_getaffinity_new): Use INT_MAX instead of UINT_MAX. --- nptl/sysdeps/unix/sysv/linux/pthread_getaffinity.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nptl/sysdeps/unix/sysv/linux/pthread_getaffinity.c b/nptl/sysdeps/unix/sysv/linux/pthread_getaffinity.c index 8d3f353..89edef6 100644 --- a/nptl/sysdeps/unix/sysv/linux/pthread_getaffinity.c +++ b/nptl/sysdeps/unix/sysv/linux/pthread_getaffinity.c @@ -34,7 +34,7 @@ __pthread_getaffinity_new (pthread_t th, size_t cpusetsize, cpu_set_t *cpuset) INTERNAL_SYSCALL_DECL (err); int res = INTERNAL_SYSCALL (sched_getaffinity, err, 3, pd->tid, - MIN (UINT_MAX, cpusetsize), cpuset); + MIN (INT_MAX, cpusetsize), cpuset); if (INTERNAL_SYSCALL_ERROR_P (res, err)) return INTERNAL_SYSCALL_ERRNO (res, err); -- 2.7.4