From e7f11a1a5a33e272f3cf510473c3b74de7a0b318 Mon Sep 17 00:00:00 2001 From: apb Date: Thu, 12 Jun 2014 19:12:19 +0000 Subject: [PATCH] fix missing backslash in previous --- lib/libc/gen/arc4random.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/libc/gen/arc4random.c b/lib/libc/gen/arc4random.c index 841ef99f17ea..82b2ab7de874 100644 --- a/lib/libc/gen/arc4random.c +++ b/lib/libc/gen/arc4random.c @@ -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 #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 @@ struct arc4_stream { #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); \