Module Name:    src
Committed By:   dholland
Date:           Sat Apr 24 01:47:34 UTC 2010

Modified Files:
        src/sys/rump/include/rump: rump.h

Log Message:
Remove trailing comma in enum, per PR kern/43200.

(trailing commas in enums are allowed in C99, but not C89, and possibly
not in C++, so let's be nice to older and deviant compilers)


To generate a diff of this commit:
cvs rdiff -u -r1.39 -r1.40 src/sys/rump/include/rump/rump.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/rump/include/rump/rump.h
diff -u src/sys/rump/include/rump/rump.h:1.39 src/sys/rump/include/rump/rump.h:1.40
--- src/sys/rump/include/rump/rump.h:1.39	Wed Apr 21 11:38:05 2010
+++ src/sys/rump/include/rump/rump.h	Sat Apr 24 01:47:34 2010
@@ -1,4 +1,4 @@
-/*	$NetBSD: rump.h,v 1.39 2010/04/21 11:38:05 pooka Exp $	*/
+/*	$NetBSD: rump.h,v 1.40 2010/04/24 01:47:34 dholland Exp $	*/
 
 /*
  * Copyright (c) 2007 Antti Kantee.  All Rights Reserved.
@@ -69,7 +69,7 @@
 	RUMP_SIGMODEL_PANIC,
 	RUMP_SIGMODEL_IGNORE,
 	RUMP_SIGMODEL_HOST,
-	RUMP_SIGMODEL_RAISE,
+	RUMP_SIGMODEL_RAISE
 };
 
 /* rumpvfs */

Reply via email to