From mboxrd@z Thu Jan 1 00:00:00 1970 From: Sean Anderson Date: Tue, 13 Oct 2020 15:20:52 -0400 Subject: [PATCH] test: Fix sandbox tests failing to build Message-ID: <20201013192052.159504-1-seanga2@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de syslog_test.h is in test/log/, not include/ Fixes: 52d3df7fef ("log: Allow LOG_DEBUG to always enable log output") Signed-off-by: Sean Anderson --- test/log/syslog_test.c | 2 +- test/log/syslog_test_ndebug.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/log/syslog_test.c b/test/log/syslog_test.c index febaca68e8..a058d8f569 100644 --- a/test/log/syslog_test.c +++ b/test/log/syslog_test.c @@ -18,7 +18,7 @@ #include #include #include -#include +#include "syslog_test.h" DECLARE_GLOBAL_DATA_PTR; diff --git a/test/log/syslog_test_ndebug.c b/test/log/syslog_test_ndebug.c index c7f5a60861..84844a3944 100644 --- a/test/log/syslog_test_ndebug.c +++ b/test/log/syslog_test_ndebug.c @@ -15,7 +15,7 @@ #include #include #include -#include +#include "syslog_test.h" DECLARE_GLOBAL_DATA_PTR; -- 2.28.0