NSH cosmetic changes
diff --git a/nshlib/nsh_console.c b/nshlib/nsh_console.c
index de7537b..ba7dbe7 100644
--- a/nshlib/nsh_console.c
+++ b/nshlib/nsh_console.c
@@ -42,10 +42,10 @@
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
+#include <stdarg.h>
#include <unistd.h>
#include <fcntl.h>
#include <string.h>
-#include <stdarg.h>
#include <assert.h>
#include <errno.h>
#include <debug.h>
@@ -213,7 +213,8 @@
*
****************************************************************************/
-static int nsh_consoleoutput(FAR struct nsh_vtbl_s *vtbl, const char *fmt, ...)
+static int nsh_consoleoutput(FAR struct nsh_vtbl_s *vtbl,
+ FAR const char *fmt, ...)
{
#if CONFIG_NFILE_DESCRIPTORS > 0
FAR struct console_stdio_s *pstate = (FAR struct console_stdio_s *)vtbl;
diff --git a/nshlib/nsh_console.h b/nshlib/nsh_console.h
index 73bab49..c78362f 100644
--- a/nshlib/nsh_console.h
+++ b/nshlib/nsh_console.h
@@ -107,7 +107,7 @@
void (*release)(FAR struct nsh_vtbl_s *vtbl);
#endif
ssize_t (*write)(FAR struct nsh_vtbl_s *vtbl, FAR const void *buffer, size_t nbytes);
- int (*output)(FAR struct nsh_vtbl_s *vtbl, const char *fmt, ...);
+ int (*output)(FAR struct nsh_vtbl_s *vtbl, FAR const char *fmt, ...);
FAR char *(*linebuffer)(FAR struct nsh_vtbl_s *vtbl);
#if CONFIG_NFILE_DESCRIPTORS > 0
void (*redirect)(FAR struct nsh_vtbl_s *vtbl, int fd, FAR uint8_t *save);
@@ -148,8 +148,6 @@
char cn_line[CONFIG_NSH_LINELEN];
};
-
-
/****************************************************************************
* Public Data
****************************************************************************/