diff --git a/TODO b/TODO index d427f43733..f24f043140 100644 --- a/TODO +++ b/TODO @@ -1,4 +1,4 @@ -NuttX TODO List (Last updated December 29, 2013) +NuttX TODO List (Last updated January 2, 2014) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ This file summarizes known NuttX bugs, limitations, inconsistencies with diff --git a/libc/stdio/lib_lowsyslog.c b/libc/stdio/lib_lowsyslog.c index bfe6a2cce8..364a418310 100644 --- a/libc/stdio/lib_lowsyslog.c +++ b/libc/stdio/lib_lowsyslog.c @@ -90,7 +90,7 @@ #if defined(CONFIG_ARCH_LOWPUTC) || defined(CONFIG_SYSLOG) -int lowvsyslog(const char *fmt, va_list ap) +int lowvsyslog(FAR const char *fmt, va_list ap) { struct lib_outstream_s stream; @@ -108,7 +108,7 @@ int lowvsyslog(const char *fmt, va_list ap) * Name: lowsyslog ****************************************************************************/ -int lowsyslog(const char *fmt, ...) +int lowsyslog(FAR const char *fmt, ...) { va_list ap; int ret; diff --git a/libc/stdio/lib_printf.c b/libc/stdio/lib_printf.c index 178cf9c653..a4530daada 100644 --- a/libc/stdio/lib_printf.c +++ b/libc/stdio/lib_printf.c @@ -86,7 +86,7 @@ * Name: printf **************************************************************************/ -int printf(const char *fmt, ...) +int printf(FAR const char *fmt, ...) { va_list ap; int ret; diff --git a/libc/stdio/lib_syslog.c b/libc/stdio/lib_syslog.c index bbf7860d2b..4e5afcebb6 100644 --- a/libc/stdio/lib_syslog.c +++ b/libc/stdio/lib_syslog.c @@ -91,7 +91,7 @@ * Name: vsyslog ****************************************************************************/ -int vsyslog(const char *fmt, va_list ap) +int vsyslog(FAR const char *fmt, va_list ap) { #if defined(CONFIG_SYSLOG) @@ -135,7 +135,7 @@ int vsyslog(const char *fmt, va_list ap) * Name: syslog ****************************************************************************/ -int syslog(const char *fmt, ...) +int syslog(FAR const char *fmt, ...) { va_list ap; int ret; diff --git a/libc/stdio/lib_syslogstream.c b/libc/stdio/lib_syslogstream.c index e29c5ca3d6..7aceeec786 100644 --- a/libc/stdio/lib_syslogstream.c +++ b/libc/stdio/lib_syslogstream.c @@ -119,5 +119,3 @@ void lib_syslogstream(FAR struct lib_outstream_s *stream) } #endif /* CONFIG_SYSLOG */ - -