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

@ -210,7 +210,7 @@ static int update_property(struct client *c,
pthread_mutex_unlock(&globals.lock);
if (c->property_callback && changed > 0) {
pw_log_info("emit %lu %s", subject, key);
pw_log_info("emit %"PRIu64" %s", (uint64_t)subject, key);
c->property_callback(subject, key, change, c->property_arg);
}
return changed;