summaryrefslogtreecommitdiff
path: root/nuttx/arch/sh
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/arch/sh')
-rw-r--r--nuttx/arch/sh/src/common/up_lowputs.c2
-rw-r--r--nuttx/arch/sh/src/common/up_puts.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/arch/sh/src/common/up_lowputs.c b/nuttx/arch/sh/src/common/up_lowputs.c
index 88cc24068..627b22e0c 100644
--- a/nuttx/arch/sh/src/common/up_lowputs.c
+++ b/nuttx/arch/sh/src/common/up_lowputs.c
@@ -67,7 +67,7 @@
void up_lowputs(const char *str)
{
- while(*str)
+ while (*str)
{
up_lowputc(*str++);
}
diff --git a/nuttx/arch/sh/src/common/up_puts.c b/nuttx/arch/sh/src/common/up_puts.c
index e17338039..968e216d2 100644
--- a/nuttx/arch/sh/src/common/up_puts.c
+++ b/nuttx/arch/sh/src/common/up_puts.c
@@ -68,7 +68,7 @@
void up_puts(const char *str)
{
- while(*str)
+ while (*str)
{
up_putc(*str++);
}