svn commit: r208502 - head/lib/libthr/thread
Daniel Eischen
deischen at FreeBSD.org
Mon May 24 13:43:11 UTC 2010
Author: deischen
Date: Mon May 24 13:43:11 2010
New Revision: 208502
URL: http://svn.freebsd.org/changeset/base/208502
Log:
Coalesce a couple of broken lines since they can fit within 80
characters. Little nit found while looking at a bug report.
Modified:
head/lib/libthr/thread/thr_condattr.c
Modified: head/lib/libthr/thread/thr_condattr.c
==============================================================================
--- head/lib/libthr/thread/thr_condattr.c Mon May 24 13:28:12 2010 (r208501)
+++ head/lib/libthr/thread/thr_condattr.c Mon May 24 13:43:11 2010 (r208502)
@@ -79,8 +79,7 @@ _pthread_condattr_destroy(pthread_condat
}
int
-_pthread_condattr_getclock(const pthread_condattr_t *attr,
- clockid_t *clock_id)
+_pthread_condattr_getclock(const pthread_condattr_t *attr, clockid_t *clock_id)
{
if (attr == NULL || *attr == NULL)
return (EINVAL);
@@ -89,8 +88,7 @@ _pthread_condattr_getclock(const pthread
}
int
-_pthread_condattr_setclock(pthread_condattr_t *attr,
- clockid_t clock_id)
+_pthread_condattr_setclock(pthread_condattr_t *attr, clockid_t clock_id)
{
if (attr == NULL || *attr == NULL)
return (EINVAL);
More information about the svn-src-all
mailing list