5987fffde7
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>
8 lines
286 B
Diff
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};
|