mirror of
https://gitlab.freedesktop.org/emersion/libliftoff.git
synced 2024-12-25 21:59:11 +01:00
Fix format string for plane ID
This commit is contained in:
parent
cfeee41ec1
commit
64cfbc8e58
1 changed files with 1 additions and 1 deletions
2
alloc.c
2
alloc.c
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue