fix compiler warnings

This commit is contained in:
Wim Taymans 2020-05-08 20:40:02 +02:00
parent 729343f59b
commit e6ccc72feb
3 changed files with 5 additions and 5 deletions

View file

@ -1348,7 +1348,7 @@ size_t pa_stream_writable_size(PA_CONST pa_stream *s)
queued -= SPA_MIN(queued, elapsed);
writable = s->maxblock - SPA_MIN(queued, s->maxblock);
pw_log_debug("stream %p: %lu", s, writable);
pw_log_debug("stream %p: %"PRIu64, s, writable);
return writable;
}