From e6db27135dcb9f2aa46bde91ac5c82e64ed51df3 Mon Sep 17 00:00:00 2001 From: Edd Barrett Date: Thu, 18 Aug 2022 15:18:40 +0000 Subject: [PATCH] Fix build on 32-bit systems. (#3032) --- src/widgets/GraphGridLayout.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/widgets/GraphGridLayout.cpp b/src/widgets/GraphGridLayout.cpp index cf100e24..0cf7840d 100644 --- a/src/widgets/GraphGridLayout.cpp +++ b/src/widgets/GraphGridLayout.cpp @@ -554,7 +554,7 @@ void GraphGridLayout::calculateEdgeMainColumn(GraphGridLayout::LayoutState &stat struct Event { - size_t blockId; + ut64 blockId; size_t edgeId; int row; enum Type { Edge = 0, Block = 1 } type;