Skip to content

Commit cf9c69e

Browse files
committed
arch/sim/sim_uart.c: fix nxstyle errors
fix nxstyle errors Signed-off-by: raiden00pl <raiden00@railab.me>
1 parent 7498d06 commit cf9c69e

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

arch/sim/src/sim/sim_uart.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -293,6 +293,7 @@ static void uart_nputs(int fd, const char *buf, size_t size)
293293
while (size > 0)
294294
{
295295
int ret = host_uart_puts(fd, buf, size);
296+
296297
if (ret < 0)
297298
{
298299
continue;
@@ -805,6 +806,7 @@ void up_putc(int ch)
805806
{
806807
#ifdef USE_DEVCONSOLE
807808
char c = ch;
809+
808810
up_nputs(&c, 1);
809811
#endif
810812
}

0 commit comments

Comments
 (0)