From 64cfbc8e5807641eef1150b146f27bd051c2ad4a Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Mon, 13 Jan 2020 10:42:46 +0100 Subject: [PATCH] Fix format string for plane ID --- alloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/alloc.c b/alloc.c index cecd6c1..c784434 100644 --- a/alloc.c +++ b/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; }