From 78845a7a613b2759e3798bc28e0df8531fe13387 Mon Sep 17 00:00:00 2001 From: PoliEcho Date: Fri, 24 Apr 2026 14:11:25 +0200 Subject: [PATCH] fix ARRAY_LENGHT macro --- macro.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/macro.h b/macro.h index 8bdd8db..4bb3a49 100644 --- a/macro.h +++ b/macro.h @@ -1,3 +1,3 @@ #pragma once -#define ARRAY_LENGTH(array) sizeof(array) / sizeof(*array); \ No newline at end of file +#define ARRAY_LENGTH(array) sizeof(array) / sizeof(*array) \ No newline at end of file