fix some printf arguments

This commit is contained in:
Wim Taymans 2022-07-18 15:39:06 +02:00
parent 67754ad3bc
commit aaeafa49c1
4 changed files with 5 additions and 5 deletions

View file

@ -227,7 +227,7 @@ static int setup_socket(struct server *server)
if (fd < 0)
return fd;
pw_log_info("%lx %d", server->entity_id, server->ifindex);
pw_log_info("0x%"PRIx64" %d", server->entity_id, server->ifindex);
server->source = pw_loop_add_io(impl->loop, fd, SPA_IO_IN, true, on_socket_data, server);
if (server->source == NULL) {