[PATCH v3 01/12] lib: sbi: Fix missing contine in print

Xiang W wxjstz at 126.com
Tue Jun 6 06:24:34 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