summaryrefslogtreecommitdiffstats
path: root/lib/libc_r/uthread/uthread_condattr_destroy.c
diff options
context:
space:
mode:
authoralex <alex@FreeBSD.org>1997-11-25 01:29:16 +0000
committeralex <alex@FreeBSD.org>1997-11-25 01:29:16 +0000
commit2d792e656e2819795c575a1abeb8dc54e2357484 (patch)
treeafcf53c94eef7b38ab83072ef9f8a80651b0230d /lib/libc_r/uthread/uthread_condattr_destroy.c
parent674aa81547dfa76c24a1a45b5acb9119cab75311 (diff)
downloadFreeBSD-src-2d792e656e2819795c575a1abeb8dc54e2357484.zip
FreeBSD-src-2d792e656e2819795c575a1abeb8dc54e2357484.tar.gz
Modify the return values to comply with POSIX. Previously these
functions would return -1 and set errno to indicate the specific error. POSIX requires that the functions return the error code as the return value of the function instead.
Diffstat (limited to 'lib/libc_r/uthread/uthread_condattr_destroy.c')
-rw-r--r--lib/libc_r/uthread/uthread_condattr_destroy.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/libc_r/uthread/uthread_condattr_destroy.c b/lib/libc_r/uthread/uthread_condattr_destroy.c
index b20f183..4179970 100644
--- a/lib/libc_r/uthread/uthread_condattr_destroy.c
+++ b/lib/libc_r/uthread/uthread_condattr_destroy.c
@@ -40,8 +40,7 @@ int pthread_condattr_destroy(pthread_condattr_t *attr)
{
int ret;
if (attr == NULL || *attr == NULL) {
- errno = EINVAL;
- ret = -1;
+ ret = EINVAL;
} else {
free(*attr);
*attr = NULL;
OpenPOWER on IntegriCloud