[PATCH v5 05/14] lib: sbi: Add ' ' '\'' flags for print
Xiang W
wxjstz at 126.com
Thu Jun 8 20:34:21 PDT 2023
Signed-off-by: Xiang W <wxjstz at 126.com>
---
lib/sbi/sbi_console.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/lib/sbi/sbi_console.c b/lib/sbi/sbi_console.c
index a616316..7f32f81 100644
--- a/lib/sbi/sbi_console.c
+++ b/lib/sbi/sbi_console.c
@@ -288,6 +288,10 @@ static int print(char **out, u32 *out_len, const char *format, va_list args)
case '0':
flags |= PAD_ZERO;
break;
+ case ' ':
+ case '\'':
+ /* Ignored flags, do nothing */
+ break;
default:
flags_done = true;
break;
--
2.39.2
More information about the opensbi
mailing list