Fix format string for plane ID

This commit is contained in:
Simon Ser 2020-01-13 10:42:46 +01:00
parent cfeee41ec1
commit 64cfbc8e58
No known key found for this signature in database
GPG key ID: 0FDE7BE0E88F5E48

View file

@ -612,7 +612,7 @@ bool liftoff_output_apply(struct liftoff_output *output, drmModeAtomicReq *req)
liftoff_list_for_each(plane, &device->planes, link) {
if (plane->layer == NULL) {
liftoff_log(LIFTOFF_DEBUG,
"Disabling plane %d", plane->id);
"Disabling plane %"PRIu32, plane->id);
if (!plane_apply(plane, NULL, req, &compatible)) {
return false;
}