From e3bf78df3e3c00c70965e8427c648a569010bd97 Mon Sep 17 00:00:00 2001 From: Axel Heider Date: Wed, 31 Jan 2024 20:22:20 +0100 Subject: [PATCH] libutils: use proper macro name in comment Signed-off-by: Axel Heider --- libutils/include/utils/auto.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libutils/include/utils/auto.h b/libutils/include/utils/auto.h index e99b67bd..21e04db6 100644 --- a/libutils/include/utils/auto.h +++ b/libutils/include/utils/auto.h @@ -15,7 +15,7 @@ * adjacent macro. Sample usage: * * void foo(void) { - * autofree int *x = malloc(sizeof(int)); + * AUTOFREE int *x = malloc(sizeof(int)); * // no need to call free(x) * } */