This is an automated email from the ASF dual-hosted git repository. pnoltes pushed a commit to branch feature/scheduled_event_on_event_thread in repository https://gitbox.apache.org/repos/asf/celix.git
commit 308294230c04accc1dc2bb4c76dc315ccebf18b2 Author: Pepijn Noltes <[email protected]> AuthorDate: Sun Jun 25 20:20:31 2023 +0200 Fix wrong include --- libs/utils/src/celix_log_level.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/utils/src/celix_log_level.c b/libs/utils/src/celix_log_level.c index 7c85d2a7..630c7b6a 100644 --- a/libs/utils/src/celix_log_level.c +++ b/libs/utils/src/celix_log_level.c @@ -18,7 +18,7 @@ */ #include "celix_log_utils.h" -#include <strings.h> +#include <string.h> static const char* const CELIX_STRING_VALUE_DISABLED = "disabled"; static const char* const CELIX_STRING_VALUE_FATAL = "fatal";
