diff options
author | Michal Schmidt <mschmidt@redhat.com> | 2014-12-10 15:18:49 +0100 |
---|---|---|
committer | Michal Schmidt <mschmidt@redhat.com> | 2014-12-13 00:47:23 +0100 |
commit | 7851983162ef851d5b9ce12bd88de86fc402f88a (patch) | |
tree | f35d9c41952e184e3e114fcf53846c8cd730ec7a /src/journal/journal-file.h | |
parent | d05089d86ef032b245c7f928e623b88c82998ab0 (diff) |
journal: have a named enum ObjectType
Diffstat (limited to 'src/journal/journal-file.h')
-rw-r--r-- | src/journal/journal-file.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/journal/journal-file.h b/src/journal/journal-file.h index 5e8065c5a0..a4a172b500 100644 --- a/src/journal/journal-file.h +++ b/src/journal/journal-file.h @@ -160,13 +160,13 @@ static inline bool VALID_EPOCH(uint64_t u) { #define JOURNAL_HEADER_COMPRESSED_LZ4(h) \ (!!(le32toh((h)->incompatible_flags) & HEADER_INCOMPATIBLE_COMPRESSED_LZ4)) -int journal_file_move_to_object(JournalFile *f, int type, uint64_t offset, Object **ret); +int journal_file_move_to_object(JournalFile *f, ObjectType type, uint64_t offset, Object **ret); uint64_t journal_file_entry_n_items(Object *o) _pure_; uint64_t journal_file_entry_array_n_items(Object *o) _pure_; uint64_t journal_file_hash_table_n_items(Object *o) _pure_; -int journal_file_append_object(JournalFile *f, int type, uint64_t size, Object **ret, uint64_t *offset); +int journal_file_append_object(JournalFile *f, ObjectType type, uint64_t size, Object **ret, uint64_t *offset); int journal_file_append_entry(JournalFile *f, const dual_timestamp *ts, const struct iovec iovec[], unsigned n_iovec, uint64_t *seqno, Object **ret, uint64_t *offset); int journal_file_find_data_object(JournalFile *f, const void *data, uint64_t size, Object **ret, uint64_t *offset); |