mirror of https://github.com/MidnightCommander/mc
Removed trailing comma in enumeration.
This commit is contained in:
parent
2ebf787653
commit
756067410f
|
@ -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;
|
||||
|
|
|
@ -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 */
|
||||
|
|
Loading…
Reference in New Issue