From e03493f08256219d2f45458f3d0e3746b306ce8c Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Tue, 19 Jun 2018 21:39:22 +0200 Subject: [PATCH] Store callstack index as uint32_t. --- server/TracyEvent.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/TracyEvent.hpp b/server/TracyEvent.hpp index 6e1e66d2..057ebdce 100644 --- a/server/TracyEvent.hpp +++ b/server/TracyEvent.hpp @@ -147,7 +147,7 @@ struct MemEvent uint64_t size; int64_t timeAlloc; int64_t timeFree; - uint64_t callstack; + uint32_t callstack; // All above is read/saved as-is. uint16_t threadAlloc;