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)
This commit is contained in:
dholland 2010-04-24 01:47:34 +00:00
parent df62afc03b
commit e4759b9b17
1 changed files with 2 additions and 2 deletions

View File

@ -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 @@ enum rump_sigmodel {
RUMP_SIGMODEL_PANIC,
RUMP_SIGMODEL_IGNORE,
RUMP_SIGMODEL_HOST,
RUMP_SIGMODEL_RAISE,
RUMP_SIGMODEL_RAISE
};
/* rumpvfs */