From 96eee7275661f150dcefaa388c7110c95d19f58b Mon Sep 17 00:00:00 2001 From: cscherr Date: Fri, 18 Jul 2025 09:20:52 +0200 Subject: [PATCH] fix(algc): trace.h was not correctly imported --- crates/algorithms/algorithms-c/project.yml | 2 +- crates/algorithms/algorithms-c/src/hash/sha2.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/algorithms/algorithms-c/project.yml b/crates/algorithms/algorithms-c/project.yml index 059e455..4414556 100755 --- a/crates/algorithms/algorithms-c/project.yml +++ b/crates/algorithms/algorithms-c/project.yml @@ -31,7 +31,7 @@ #- subprojects # managing builds and test for static libraries #- fake_function_framework # use FFF instead of CMock # Report options (You'll want to choose one stdout option, but may choose multiple stored options if desired) - #- report_build_warnings_log + - report_build_warnings_log #- report_tests_gtestlike_stdout #- report_tests_ide_stdout #- report_tests_log_factory diff --git a/crates/algorithms/algorithms-c/src/hash/sha2.c b/crates/algorithms/algorithms-c/src/hash/sha2.c index d0e0b47..1363237 100644 --- a/crates/algorithms/algorithms-c/src/hash/sha2.c +++ b/crates/algorithms/algorithms-c/src/hash/sha2.c @@ -1,5 +1,5 @@ #include "sha2.h" -#include "trace.h" +#include "../trace.h" #include #include #include