Fixed pedantic syntax error (trailing comma in enum).

This commit is contained in:
Bruce Evans 1998-01-16 12:39:20 +00:00
parent a67d6a5933
commit b68659fc63
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=32556

View File

@ -25,6 +25,8 @@
* Sun Microsystems, Inc.
* 2550 Garcia Avenue
* Mountain View, California 94043
*
* $Id$
*/
/*
@ -78,7 +80,7 @@ enum db_action {
DB_FIRST = 3,
DB_NEXT = 4,
DB_ALL = 5,
DB_RESET_NEXT = 6,
DB_RESET_NEXT = 6
};
typedef enum db_action db_action;