1
0
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:
Phil Sutter 2009-12-17 22:17:15 +01:00
parent 3bc141cb7b
commit de049dcbde
3 changed files with 4 additions and 4 deletions

View File

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

View File

@ -41,7 +41,7 @@ enum _apcupsd_items {
APCUPSD_TIMELEFT,
APCUPSD_TEMP,
APCUPSD_LASTXFER,
_APCUPSD_COUNT,
_APCUPSD_COUNT
};
/* type for data exchange with main thread */

View File

@ -59,7 +59,7 @@ enum special_types {
VOFFSET,
FONT,
GOTO,
TAB,
TAB
};
struct special_t {