From 9e4c3dc80799908e15caaf3041b0498d01cbb968 Mon Sep 17 00:00:00 2001 From: patacongo Date: Fri, 13 Apr 2012 18:25:25 +0000 Subject: [PATCH] Fix backward conditional compilation git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@4601 7fd9a85b-ad96-42d3-883c-3090e2eb8679 --- nuttx/lib/stdio/lib_libvsprintf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nuttx/lib/stdio/lib_libvsprintf.c b/nuttx/lib/stdio/lib_libvsprintf.c index dd2c5f83f5..8d521c35e8 100644 --- a/nuttx/lib/stdio/lib_libvsprintf.c +++ b/nuttx/lib/stdio/lib_libvsprintf.c @@ -1558,7 +1558,7 @@ int lib_vsprintf(FAR struct lib_outstream_s *obj, FAR const char *src, va_list a #ifdef CONFIG_LIBC_FLOATINGPOINT else if (strchr("eEfgG", FMT_CHAR)) { -#ifdef CONFIG_NOPRINTF_FIELDWIDTH +#ifndef CONFIG_NOPRINTF_FIELDWIDTH double dblval = va_arg(ap, double); int dblsize;