Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 24 May 2010 13:43:11 +0000 (UTC)
From:      Daniel Eischen <deischen@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r208502 - head/lib/libthr/thread
Message-ID:  <201005241343.o4ODhBFT015851@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201005241343.o4ODhBFT015851>