1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2025-02-14 01:57:27 +03:00

journal-file: fix type of array counter

This commit is contained in:
Lennart Poettering 2023-01-25 14:07:50 +01:00
parent 6ec7a722ba
commit b45a7215fd
2 changed files with 3 additions and 2 deletions

View File

@ -2248,7 +2248,7 @@ int journal_file_append_entry(
const dual_timestamp *ts,
const sd_id128_t *boot_id,
const struct iovec iovec[],
unsigned n_iovec,
size_t n_iovec,
uint64_t *seqnum,
Object **ret_object,
uint64_t *ret_offset) {

View File

@ -254,7 +254,8 @@ int journal_file_append_entry(
JournalFile *f,
const dual_timestamp *ts,
const sd_id128_t *boot_id,
const struct iovec iovec[], unsigned n_iovec,
const struct iovec iovec[],
size_t n_iovec,
uint64_t *seqno,
Object **ret_object,
uint64_t *ret_offset);