mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-09 00:00:00 +01:00
fix compiler warning about format string
This commit is contained in:
parent
e1b09461c1
commit
4791a42ecd
1 changed files with 1 additions and 1 deletions
|
@ -287,7 +287,7 @@ enum signal_type sample_format(const struct sample *s, unsigned idx)
|
|||
|
||||
void sample_dump(struct sample *s)
|
||||
{
|
||||
debug(5, "Sample: sequence=%llu, length=%d, capacity=%d, flags=%#x, signals=%p, #signals=%zu, "
|
||||
debug(5, "Sample: sequence=%" PRIu64 ", length=%d, capacity=%d, flags=%#x, signals=%p, #signals=%zu, "
|
||||
"refcnt=%d, pool_off=%zd",
|
||||
s->sequence, s->length, s->capacity, s->flags, s->signals,
|
||||
s->signals ? vlist_length(s->signals) : 0, atomic_load(&s->refcnt), s->pool_off);
|
||||
|
|
Loading…
Add table
Reference in a new issue