[PATCH v2 01/12] lib: sbi: Fix missing contine in print
Xiang W
wxjstz at 126.com
Tue Jun 6 03:31:01 PDT 2023
Missing continue after print %lu %ld %lx ...
Signed-off-by: Xiang W <wxjstz at 126.com>
---
lib/sbi/sbi_console.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/lib/sbi/sbi_console.c b/lib/sbi/sbi_console.c
index 168dffd..1f0727c 100644
--- a/lib/sbi/sbi_console.c
+++ b/lib/sbi/sbi_console.c
@@ -370,6 +370,7 @@ static int print(char **out, u32 *out_len, const char *format, va_list args)
va_arg(args, long), 10, 1,
width, flags, '0');
}
+ continue;
}
if (*format == 'c') {
/* char are converted to int then pushed on the stack */
--
2.39.2
More information about the opensbi
mailing list