Module Name:    src
Committed By:   riastradh
Date:           Sat Jun 13 17:39:42 UTC 2020

Modified Files:
        src/lib/libpthread: pthread_cond.c

Log Message:
Nix trailing whitespace.


To generate a diff of this commit:
cvs rdiff -u -r1.74 -r1.75 src/lib/libpthread/pthread_cond.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/lib/libpthread/pthread_cond.c
diff -u src/lib/libpthread/pthread_cond.c:1.74 src/lib/libpthread/pthread_cond.c:1.75
--- src/lib/libpthread/pthread_cond.c:1.74	Wed Jun 10 22:45:15 2020
+++ src/lib/libpthread/pthread_cond.c	Sat Jun 13 17:39:42 2020
@@ -1,4 +1,4 @@
-/*	$NetBSD: pthread_cond.c,v 1.74 2020/06/10 22:45:15 ad Exp $	*/
+/*	$NetBSD: pthread_cond.c,v 1.75 2020/06/13 17:39:42 riastradh Exp $	*/
 
 /*-
  * Copyright (c) 2001, 2006, 2007, 2008, 2020 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__RCSID("$NetBSD: pthread_cond.c,v 1.74 2020/06/10 22:45:15 ad Exp $");
+__RCSID("$NetBSD: pthread_cond.c,v 1.75 2020/06/13 17:39:42 riastradh Exp $");
 
 #include <stdlib.h>
 #include <errno.h>
@@ -179,7 +179,7 @@ pthread_cond_timedwait(pthread_cond_t *c
 		pthread_cond_broadcast(cond);
 
 		/*
-		 * Might have raced with another thread to do the wakeup. 
+		 * Might have raced with another thread to do the wakeup.
 		 * Wait until released, otherwise "waiter" is still globally
 		 * visible.
 		 */

Reply via email to