(__pthread_getaffinity_new): Use INT_MAX instead of UINT_MAX.
authorUlrich Drepper <drepper@redhat.com>
Mon, 22 Mar 2004 19:32:45 +0000 (19:32 +0000)
committerUlrich Drepper <drepper@redhat.com>
Mon, 22 Mar 2004 19:32:45 +0000 (19:32 +0000)
nptl/sysdeps/unix/sysv/linux/pthread_getaffinity.c

index 8d3f353..89edef6 100644 (file)
@@ -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);