summaryrefslogtreecommitdiff
path: root/nuttx/libc
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2013-06-02 16:49:41 -0600
committerGregory Nutt <gnutt@nuttx.org>2013-06-02 16:49:41 -0600
commit53c51e08ddc1b83bedb890338142ce9a6ba289be (patch)
tree7a8ec06d46cb7a11ce7d0d1350aaf4602547f6f6 /nuttx/libc
parent77bb79ef7fb645911c7c0731061d4b469cfe3005 (diff)
downloadpx4-nuttx-53c51e08ddc1b83bedb890338142ce9a6ba289be.tar.gz
px4-nuttx-53c51e08ddc1b83bedb890338142ce9a6ba289be.tar.bz2
px4-nuttx-53c51e08ddc1b83bedb890338142ce9a6ba289be.zip
Fix an assertion
Diffstat (limited to 'nuttx/libc')
-rw-r--r--nuttx/libc/stdio/Make.defs2
-rw-r--r--nuttx/libc/stdio/lib_vdprintf.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/libc/stdio/Make.defs b/nuttx/libc/stdio/Make.defs
index b64d2bd5b..f04dfb215 100644
--- a/nuttx/libc/stdio/Make.defs
+++ b/nuttx/libc/stdio/Make.defs
@@ -37,7 +37,7 @@
# This first group of C files do not depend on having file descriptors or
# C streams.
-CSRCS += lib_fileno.c lib_printf.c lib_syslog.c lib_lowsyslog.c\
+CSRCS += lib_fileno.c lib_printf.c lib_syslog.c lib_lowsyslog.c \
lib_sprintf.c lib_asprintf.c lib_snprintf.c lib_libsprintf.c \
lib_vsprintf.c lib_avsprintf.c lib_vsnprintf.c lib_libvsprintf.c \
lib_dprintf.c lib_vdprintf.c \
diff --git a/nuttx/libc/stdio/lib_vdprintf.c b/nuttx/libc/stdio/lib_vdprintf.c
index 8cdea96c6..d96ca40f8 100644
--- a/nuttx/libc/stdio/lib_vdprintf.c
+++ b/nuttx/libc/stdio/lib_vdprintf.c
@@ -56,4 +56,4 @@ int vdprintf(int fd, FAR const char *fmt, va_list ap)
lib_rawoutstream(&rawoutstream, fd);
return lib_vsprintf(&rawoutstream.public, fmt, ap);
-}
+}