Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/lib/libc/gen fix missing backslash in previous



details:   https://anonhg.NetBSD.org/src/rev/9a1d1ccd8686
branches:  trunk
changeset: 796637:9a1d1ccd8686
user:      apb <apb%NetBSD.org@localhost>
date:      Thu Jun 12 19:12:19 2014 +0000

description:
fix missing backslash in previous

diffstat:

 lib/libc/gen/arc4random.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 3c49f9ed3483 -r 9a1d1ccd8686 lib/libc/gen/arc4random.c
--- a/lib/libc/gen/arc4random.c Thu Jun 12 19:11:51 2014 +0000
+++ b/lib/libc/gen/arc4random.c Thu Jun 12 19:12:19 2014 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: arc4random.c,v 1.23 2014/06/12 19:05:37 apb Exp $      */
+/*     $NetBSD: arc4random.c,v 1.24 2014/06/12 19:12:19 apb Exp $      */
 /*     $OpenBSD: arc4random.c,v 1.6 2001/06/05 05:05:38 pvalchev Exp $ */
 
 /*
@@ -27,7 +27,7 @@
 
 #include <sys/cdefs.h>
 #if defined(LIBC_SCCS) && !defined(lint)
-__RCSID("$NetBSD: arc4random.c,v 1.23 2014/06/12 19:05:37 apb Exp $");
+__RCSID("$NetBSD: arc4random.c,v 1.24 2014/06/12 19:12:19 apb Exp $");
 #endif /* LIBC_SCCS and not lint */
 
 #include "namespace.h"
@@ -63,7 +63,7 @@
 
 #ifdef _REENTRANT
 #define LOCK(rs)       do { \
-                               if (__isthreaded) mutex_lock(&(rs)->mtx);
+                               if (__isthreaded) mutex_lock(&(rs)->mtx); \
                        } while (/*CONSTCOND*/ 0)
 #define UNLOCK(rs)     do { \
                                if (__isthreaded) mutex_unlock(&(rs)->mtx); \



Home | Main Index | Thread Index | Old Index