From f175bc9e19dfba6eff48eacc222835ab4e41878d Mon Sep 17 00:00:00 2001 From: dzaima Date: Sun, 26 Mar 2023 15:57:09 +0300 Subject: [PATCH] fix printf of sample count --- src/vm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vm.c b/src/vm.c index 836ee3d2..09670198 100644 --- a/src/vm.c +++ b/src/vm.c @@ -1579,7 +1579,7 @@ usz profiler_getResults(B* compListRes, B* mapListRes, bool keyPath) { void profiler_displayResults(void) { ux count = (u64)(profiler_buf_c-profiler_buf_s); - printf("Got "N64u" samples\n", count); + printf("Got %zu samples\n", count); if (profiler_mode==1) { B compList, mapList; usz compCount = profiler_getResults(&compList, &mapList, true);