From c174c3cb3822bd6352f9ae02cad8cded3197894a Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 27 Oct 2023 15:49:37 +0530 Subject: [PATCH] ... --- kitty/graphics.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kitty/graphics.c b/kitty/graphics.c index 69e0348a7..8e6b80929 100644 --- a/kitty/graphics.c +++ b/kitty/graphics.c @@ -916,12 +916,12 @@ has_good_ancestry(GraphicsManager *self, ImageRef *ref) { } Image *parent = img_by_internal_id(self, r->parent.img); if (!parent) { - set_command_failed_response("ENOENT", "One of the ancestors of this ref with image id: %u not found", r->parent.img); + set_command_failed_response("ENOENT", "One of the ancestors of this ref with image id: %llu not found", r->parent.img); return false; } ImageRef *parent_ref = ref_by_internal_id(parent, r->parent.ref); if (!parent_ref) { - set_command_failed_response("ENOENT", "One of the ancestors of this ref with image id: %u and ref id: %u not found", r->parent.img, r->parent.ref); + set_command_failed_response("ENOENT", "One of the ancestors of this ref with image id: %llu and ref id: %llu not found", r->parent.img, r->parent.ref); return false; } r = parent_ref;