Source-Changes-HG archive

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

[src/trunk]: src/sys/sys remove extra ;



details:   https://anonhg.NetBSD.org/src/rev/969d6511a471
branches:  trunk
changeset: 778183:969d6511a471
user:      christos <christos%NetBSD.org@localhost>
date:      Sun Mar 18 16:30:54 2012 +0000

description:
remove extra ;

diffstat:

 sys/sys/cdefs.h |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 2190ba562531 -r 969d6511a471 sys/sys/cdefs.h
--- a/sys/sys/cdefs.h   Sun Mar 18 16:26:34 2012 +0000
+++ b/sys/sys/cdefs.h   Sun Mar 18 16:30:54 2012 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: cdefs.h,v 1.96 2012/03/18 16:20:49 christos Exp $      */
+/*     $NetBSD: cdefs.h,v 1.97 2012/03/18 16:30:54 christos Exp $      */
 
 /*
  * Copyright (c) 1991, 1993
@@ -149,7 +149,7 @@
 #define        __CTASSERT(x)           __CTASSERT0(x, __ctassert, __LINE__)
 #endif
 #define        __CTASSERT0(x, y, z)    __CTASSERT1(x, y, z)
-#define        __CTASSERT1(x, y, z)    typedef char y ## z[/*CONSTCOND*/(x) ? 1 : -1];
+#define        __CTASSERT1(x, y, z)    typedef char y ## z[/*CONSTCOND*/(x) ? 1 : -1]
 
 /*
  * The following macro is used to remove const cast-away warnings



Home | Main Index | Thread Index | Old Index