Removed trailing comma in enumeration.

This commit is contained in:
Roland Illig 2004-08-17 11:13:10 +00:00
parent 2ebf787653
commit 756067410f
2 changed files with 2 additions and 2 deletions

View File

@ -66,7 +66,7 @@ char *_icase_search (char *text, char *data, int *lng);
enum {
match_file, /* match a filename, use easy_patterns */
match_normal, /* match pattern, use easy_patterns */
match_regex, /* match pattern, force using regex */
match_regex /* match pattern, force using regex */
};
extern int easy_patterns;

View File

@ -85,7 +85,7 @@ int query_dialog (const char *header, const char *text, int flags, int count, ..
/* flags for message() and query_dialog() */
enum {
D_NORMAL = 0,
D_ERROR = 1,
D_ERROR = 1
} /* dialog options */;
#endif /* __WTOOLS_H */