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:
parent
6ec7a722ba
commit
b45a7215fd
@ -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) {
|
||||
|
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user