Module Name:    src
Committed By:   tsutsui
Date:           Sun Mar 18 17:59:57 UTC 2012

Modified Files:
        src/sys/sys: ucontext.h

Log Message:
Add a semicolon to __CTASSERT() since it was removed from the macro
in cdefs.h rev 1.97 by christos.


To generate a diff of this commit:
cvs rdiff -u -r1.14 -r1.15 src/sys/sys/ucontext.h

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

Modified files:

Index: src/sys/sys/ucontext.h
diff -u src/sys/sys/ucontext.h:1.14 src/sys/sys/ucontext.h:1.15
--- src/sys/sys/ucontext.h:1.14	Sun Feb 19 21:07:00 2012
+++ src/sys/sys/ucontext.h	Sun Mar 18 17:59:57 2012
@@ -1,4 +1,4 @@
-/*	$NetBSD: ucontext.h,v 1.14 2012/02/19 21:07:00 rmind Exp $	*/
+/*	$NetBSD: ucontext.h,v 1.15 2012/03/18 17:59:57 tsutsui Exp $	*/
 
 /*-
  * Copyright (c) 1999, 2003 The NetBSD Foundation, Inc.
@@ -78,7 +78,7 @@ struct __ucontext {
 struct lwp;
 
 #ifdef __UCONTEXT_SIZE
-__CTASSERT(sizeof(ucontext_t) == __UCONTEXT_SIZE)
+__CTASSERT(sizeof(ucontext_t) == __UCONTEXT_SIZE);
 #endif
 
 void	getucontext(struct lwp *, ucontext_t *);

Reply via email to