(NSC_BITS): Remove the trailing comma as it is last row.

This commit is contained in:
Ron Koenderink 2005-11-05 20:25:16 +00:00
parent 613a9c52db
commit 8d03e1ce8e

View file

@ -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;