From a8ae41aafe0f42c8363ccad50721b262c40c42d2 Mon Sep 17 00:00:00 2001 From: Christian Hergert Date: Fri, 28 Jul 2023 17:52:33 -0700 Subject: [PATCH] sysprof: match memory augmentation type to capture format --- src/sysprof/sysprof-memory-callgraph-view.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sysprof/sysprof-memory-callgraph-view.c b/src/sysprof/sysprof-memory-callgraph-view.c index 07abd213..ebc800f4 100644 --- a/src/sysprof/sysprof-memory-callgraph-view.c +++ b/src/sysprof/sysprof-memory-callgraph-view.c @@ -51,8 +51,8 @@ struct _SysprofMemoryCallgraphViewClass typedef struct _AugmentMemory { - gsize size; - gsize total; + gint64 size; + gint64 total; } AugmentMemory; G_DEFINE_FINAL_TYPE (SysprofMemoryCallgraphView, sysprof_memory_callgraph_view, SYSPROF_TYPE_CALLGRAPH_VIEW)