9
0
Fork 0

Fix messaging logic for case of debu disabled

git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@1944 7fd9a85b-ad96-42d3-883c-3090e2eb8679
This commit is contained in:
patacongo 2009-06-25 00:23:54 +00:00
parent e4a3bab039
commit 493b25bdc7
1 changed files with 16 additions and 5 deletions

View File

@ -38,6 +38,7 @@
****************************************************************************/
#include <nuttx/config.h>
#include <nuttx/compiler.h>
#include <sys/types.h>
#include <sys/mount.h>
@ -96,12 +97,22 @@
* output will be synchronous with the debug output.
*/
#ifdef CONFIG_DEBUG
# define message dbg
# define err dbg
#ifdef CONFIG_CPP_HAVE_VARARGS
# ifdef CONFIG_DEBUG
# define message(format, arg...) dbg(format, ##arg)
# define err(format, arg...) dbg(format, ##arg)
# else
# define message(format, arg...) printf(format, ##arg)
# define err(format, arg...) fprintf(stderr, format, ##arg)
# endif
#else
# define message printf
# define err fprintf(stderr,
# ifdef CONFIG_DEBUG
# define message dbg
# define err dbg
# else
# define message printf
# define err printf
# endif
#endif
/****************************************************************************