From 0d0829659be019b3695795e1604d36591a3c3785 Mon Sep 17 00:00:00 2001 From: Amlal Date: Fri, 25 Oct 2024 21:08:49 +0200 Subject: Fixed bootloader makefile and moved CFKit into it's own namespace. Signed-off-by: Amlal --- dev/zba/src/Thread.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dev/zba/src/Thread.cc') diff --git a/dev/zba/src/Thread.cc b/dev/zba/src/Thread.cc index e1884dcb..d009a633 100644 --- a/dev/zba/src/Thread.cc +++ b/dev/zba/src/Thread.cc @@ -39,8 +39,8 @@ namespace Boot if (blob_bytes[0] == kMagMz0 && blob_bytes[1] == kMagMz1) { - LDR_EXEC_HEADER_PTR header_ptr = ldr_find_exec_header(blob_bytes); - LDR_OPTIONAL_HEADER_PTR opt_header_ptr = ldr_find_opt_exec_header(blob_bytes); + LDR_EXEC_HEADER_PTR header_ptr = CFKit::ldr_find_exec_header(blob_bytes); + LDR_OPTIONAL_HEADER_PTR opt_header_ptr = CFKit::ldr_find_opt_exec_header(blob_bytes); if (!header_ptr || !opt_header_ptr) return; -- cgit v1.2.3