mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-11-18 02:55:12 +00:00
--enable-testing rejects commas at end of enumerator lists
This commit is contained in:
parent
3bc141cb7b
commit
de049dcbde
@ -40,13 +40,13 @@ enum match_type {
|
||||
OP_EQ = 3, /* == */
|
||||
OP_LEQ = 4, /* <= */
|
||||
OP_GEQ = 5, /* >= */
|
||||
OP_NEQ = 6, /* != */
|
||||
OP_NEQ = 6 /* != */
|
||||
};
|
||||
|
||||
enum arg_type {
|
||||
ARG_STRING = 1, /* "asdf" */
|
||||
ARG_LONG = 2, /* 123456 */
|
||||
ARG_DOUBLE = 3, /* 12.456 */
|
||||
ARG_DOUBLE = 3 /* 12.456 */
|
||||
};
|
||||
|
||||
int compare(const char *);
|
||||
|
@ -41,7 +41,7 @@ enum _apcupsd_items {
|
||||
APCUPSD_TIMELEFT,
|
||||
APCUPSD_TEMP,
|
||||
APCUPSD_LASTXFER,
|
||||
_APCUPSD_COUNT,
|
||||
_APCUPSD_COUNT
|
||||
};
|
||||
|
||||
/* type for data exchange with main thread */
|
||||
|
@ -59,7 +59,7 @@ enum special_types {
|
||||
VOFFSET,
|
||||
FONT,
|
||||
GOTO,
|
||||
TAB,
|
||||
TAB
|
||||
};
|
||||
|
||||
struct special_t {
|
||||
|
Loading…
Reference in New Issue
Block a user