From 95867de626bbda606cbd7e4f8f09ddb3facc9918 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Wed, 1 Oct 2025 16:48:57 +0000 Subject: [PATCH] graphs: Fix typo in variable name Signed-off-by: Michael Tremer --- src/daemon/graphs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/daemon/graphs.c b/src/daemon/graphs.c index ebd9c61..801d72f 100644 --- a/src/daemon/graphs.c +++ b/src/daemon/graphs.c @@ -169,7 +169,7 @@ char** collecty_graphs_get_bus_paths(collecty_graphs* self) { char* path = NULL; // Allocate an array to store all the strings - paths = calloc(self->num_graphs + 1, sizeof(*path)); + paths = calloc(self->num_graphs + 1, sizeof(*paths)); if (!paths) goto ERROR; -- 2.47.3