Source-Changes-HG archive

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

[src/trunk]: src/sys/rump/include/rump Remove trailing comma in enum, per PR ...



details:   https://anonhg.NetBSD.org/src/rev/819f3242faf2
branches:  trunk
changeset: 754230:819f3242faf2
user:      dholland <dholland%NetBSD.org@localhost>
date:      Sat Apr 24 01:47:34 2010 +0000

description:
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)

diffstat:

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

diffs (18 lines):

diff -r aa03e989fb5b -r 819f3242faf2 sys/rump/include/rump/rump.h
--- a/sys/rump/include/rump/rump.h      Sat Apr 24 01:35:50 2010 +0000
+++ b/sys/rump/include/rump/rump.h      Sat Apr 24 01:47:34 2010 +0000
@@ -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 */



Home | Main Index | Thread Index | Old Index