Files
RedBear-OS/local/patches/base/P12-init-fix-init-debug-import.patch
vasilito 5987fffde7 fix: P12 init_debug import error in base init
The init_debug macro was used without importing it, causing a compile error. P12 patch adds the missing import. Wired into base recipe.toml patches list.

Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
2026-05-29 21:49:07 +03:00

8 lines
286 B
Diff

diff --git a/init/src/main.rs b/init/src/main.rs
index 45cb9f73..f3861e94 100644
--- a/init/src/main.rs
+++ b/init/src/main.rs
@@ -18 +18 @@ mod unit;
-use crate::color::{init_error, init_warn, status_fail, status_ok};
+use crate::color::{init_debug, init_error, init_warn, status_ok};