From 8d03e1ce8ea778c4ca5c1ee2e2bd329168b0cd40 Mon Sep 17 00:00:00 2001 From: Ron Koenderink Date: Sat, 5 Nov 2005 20:25:16 +0000 Subject: [PATCH] (NSC_BITS): Remove the trailing comma as it is last row. --- include/nsc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/nsc.h b/include/nsc.h index 1b525199..f320affb 100644 --- a/include/nsc.h +++ b/include/nsc.h @@ -87,7 +87,7 @@ enum { NSC_DEITY = bit(0), /* access restricted to deity */ NSC_EXTRA = bit(1), /* computable from other selectors */ NSC_CONST = bit(2), /* field cannot be changed */ - NSC_BITS = bit(3), /* value consists of flag bits */ + NSC_BITS = bit(3) /* value consists of flag bits */ }; typedef unsigned char nsc_flags;