mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-29 05:40:27 -04:00
treewide: fix some format string issues
Use the proper specifier, and cast to a known type where the type is not guaranteed by any standard. See #3975
This commit is contained in:
parent
a7a0e2072e
commit
8a4ff447d9
5 changed files with 8 additions and 7 deletions
|
|
@ -738,7 +738,8 @@ int message_dump(enum spa_log_level level, struct message *m)
|
|||
struct timeval tv;
|
||||
if ((res = read_timeval(m, &tv)) < 0)
|
||||
return res;
|
||||
pw_log(level, "%u: timeval: %lu:%lu", o, tv.tv_sec, tv.tv_usec);
|
||||
pw_log(level, "%u: timeval: %jd:%jd", o,
|
||||
(intmax_t) tv.tv_sec, (intmax_t) tv.tv_usec);
|
||||
break;
|
||||
}
|
||||
case TAG_CHANNEL_MAP:
|
||||
|
|
|
|||
|
|
@ -208,7 +208,7 @@ static int send_object_event(struct client *client, struct pw_manager_object *o,
|
|||
{
|
||||
uint32_t event = 0, mask = 0, res_index = o->index;
|
||||
|
||||
pw_log_debug("index:%d id:%d %08lx type:%u", o->index, o->id, o->change_mask, type);
|
||||
pw_log_debug("index:%d id:%d %08" PRIx64 " type:%u", o->index, o->id, o->change_mask, type);
|
||||
|
||||
if (pw_manager_object_is_sink(o) && o->change_mask & PW_MANAGER_OBJECT_FLAG_SINK) {
|
||||
client_queue_subscribe_event(client,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue