From 5580f461dcf3465ce48dfce335b7c4661d67207b Mon Sep 17 00:00:00 2001 From: Omar Polo Date: Fri, 18 Nov 2022 10:13:49 +0000 Subject: [PATCH] fix log_debug call --- src/picom.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/picom.c b/src/picom.c index fd693fc..ecd0907 100644 --- a/src/picom.c +++ b/src/picom.c @@ -539,8 +539,8 @@ static bool initialize_backend(session_t *ps) { } else { shader->attributes = 0; } - log_debug("Shader %s has attributes %ld", shader->key, - shader->attributes); + log_debug("Shader %s has attributes %" PRIu64, + shader->key, shader->attributes); } }