1
0
mirror of https://github.com/systemd/systemd.git synced 2024-12-23 21:35:11 +03:00

sd-journal: add trailing comma

This commit is contained in:
Yu Watanabe 2024-08-08 23:24:11 +09:00
parent 12dcb12df3
commit 24ce1703c4
3 changed files with 4 additions and 4 deletions

View File

@ -164,7 +164,7 @@ enum {
STATE_OFFLINE = 0,
STATE_ONLINE = 1,
STATE_ARCHIVED = 2,
_STATE_MAX
_STATE_MAX,
};
/* Header flags */

View File

@ -46,7 +46,7 @@ typedef enum LocationType {
/* We should seek to the precise location specified, and
* return it, as we haven't read it yet. */
LOCATION_SEEK
LOCATION_SEEK,
} LocationType;
typedef enum OfflineState {
@ -56,7 +56,7 @@ typedef enum OfflineState {
OFFLINE_CANCEL,
OFFLINE_AGAIN_FROM_SYNCING,
OFFLINE_AGAIN_FROM_OFFLINING,
OFFLINE_DONE
OFFLINE_DONE,
} OfflineState;
typedef struct JournalFile {

View File

@ -25,7 +25,7 @@ typedef struct Directory Directory;
typedef enum MatchType {
MATCH_DISCRETE,
MATCH_OR_TERM,
MATCH_AND_TERM
MATCH_AND_TERM,
} MatchType;
struct Match {