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.c | |
parent | d05089d86ef032b245c7f928e623b88c82998ab0 (diff) |
journal: have a named enum ObjectType
Diffstat (limited to 'src/journal/journal-file.c')
-rw-r--r-- | src/journal/journal-file.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/journal/journal-file.c b/src/journal/journal-file.c index 6ee0fff04c..1d73be1a2a 100644 --- a/src/journal/journal-file.c +++ b/src/journal/journal-file.c @@ -374,7 +374,7 @@ static int journal_file_allocate(JournalFile *f, uint64_t offset, uint64_t size) return 0; } -static unsigned type_to_context(int type) { +static unsigned type_to_context(ObjectType type) { /* One context for each type, plus one catch-all for the rest */ return type > OBJECT_UNUSED && type < _OBJECT_TYPE_MAX ? type : 0; } @@ -417,7 +417,7 @@ static uint64_t minimum_header_size(Object *o) { return table[o->object.type]; } -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) { int r; void *t; Object *o; @@ -487,7 +487,7 @@ static uint64_t journal_file_entry_seqnum(JournalFile *f, uint64_t *seqnum) { return r; } -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 r; uint64_t p; Object *tail, *o; |