Correct typo
All checks were successful
Builds / ExectOS (i686) (push) Successful in 47s
Builds / ExectOS (amd64) (push) Successful in 49s

This commit is contained in:
Rafal Kupiec 2024-06-12 16:11:38 +02:00
parent 3c1eea33d9
commit c7e96184e6
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4

View File

@ -62,7 +62,7 @@
/* Macro for calculating size of an array */
#define ARRAY_SIZE(Array) (sizeof(Array) / sizeof(*Array))
/* Macro for concatenating two strings */
/* Macros for concatenating two strings */
#define CONCAT_STRING(Str1, Str2) Str1##Str2
#define CONCATENATE(Str1, Str2) CONCAT_STRING(Str1, Str2)