Source-Changes-HG archive

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

[src/trunk]: src/sys/fs/puffs Add close brace, accidentally omitted from prev...



details:   https://anonhg.NetBSD.org/src/rev/4fc145647f4e
branches:  trunk
changeset: 332716:4fc145647f4e
user:      apb <apb%NetBSD.org@localhost>
date:      Sun Oct 05 20:40:46 2014 +0000

description:
Add close brace, accidentally omitted from previous change.

diffstat:

 sys/fs/puffs/puffs_sys.h |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (22 lines):

diff -r d02c68522f99 -r 4fc145647f4e sys/fs/puffs/puffs_sys.h
--- a/sys/fs/puffs/puffs_sys.h  Sun Oct 05 20:17:28 2014 +0000
+++ b/sys/fs/puffs/puffs_sys.h  Sun Oct 05 20:40:46 2014 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: puffs_sys.h,v 1.87 2014/10/05 14:13:14 apb Exp $       */
+/*     $NetBSD: puffs_sys.h,v 1.88 2014/10/05 20:40:46 apb Exp $       */
 
 /*
  * Copyright (c) 2005, 2006  Antti Kantee.  All Rights Reserved.
@@ -65,10 +65,10 @@
 extern int puffsdebug; /* puffs_subr.c */
 #define DPRINTF(x) do { \
                if (puffsdebug > 0) printf x; \
-       while (/*CONSTCOND*/0)
+       } while (/*CONSTCOND*/0)
 #define DPRINTF_VERBOSE(x) do { \
                if (puffsdebug > 1) printf x; \
-       while (/*CONSTCOND*/0)
+       } while (/*CONSTCOND*/0)
 #else
 #define DPRINTF(x) ((void)0)
 #define DPRINTF_VERBOSE(x) ((void)0)



Home | Main Index | Thread Index | Old Index