From 7de688d89384c1d32ea1f8b8ca6a47f5d7ba28c1 Mon Sep 17 00:00:00 2001 From: mtarik34b <131314797+mtarik34b@users.noreply.github.com> Date: Sat, 28 Mar 2026 02:50:05 +0100 Subject: [PATCH] Use int instead of u64 --- src/docs.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/docs.cpp b/src/docs.cpp index e711d9f59..de7bdafd1 100644 --- a/src/docs.cpp +++ b/src/docs.cpp @@ -60,7 +60,7 @@ gb_internal GB_COMPARE_PROC(cmp_entities_for_printing_by_order_in_src) { GB_ASSERT(b != nullptr); Entity *x = *cast(Entity **)a; Entity *y = *cast(Entity **)b; - u64 res = 0; + int res = 0; if (x->pkg != y->pkg) { if (x->pkg == nullptr) { return -1;