From: Michael Tremer Date: Wed, 1 Oct 2025 16:48:57 +0000 (+0000) Subject: graphs: Fix typo in variable name X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=95867de626bbda606cbd7e4f8f09ddb3facc9918;p=collecty.git graphs: Fix typo in variable name Signed-off-by: Michael Tremer --- 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;