Typo: fwerr, not fderr

This commit is contained in:
Gregory Nutt 2016-06-21 18:10:07 -06:00
parent 1ea1cc5cde
commit 2ee4ced33b

View File

@ -62,18 +62,18 @@
#ifdef CONFIG_THTTPD_FDWATCH_DEBUG #ifdef CONFIG_THTTPD_FDWATCH_DEBUG
# ifdef CONFIG_CPP_HAVE_VARARGS # ifdef CONFIG_CPP_HAVE_VARARGS
# define fderr(format, ...) nerr(format, ##__VA_ARGS__) # define fwerr(format, ...) nerr(format, ##__VA_ARGS__)
# define fwinfo(format, ...) ninfo(format, ##__VA_ARGS__) # define fwinfo(format, ...) ninfo(format, ##__VA_ARGS__)
# else # else
# define fderr nerr # define fwerr nerr
# define fwinfo ninfo # define fwinfo ninfo
# endif # endif
#else #else
# ifdef CONFIG_CPP_HAVE_VARARGS # ifdef CONFIG_CPP_HAVE_VARARGS
# define fderr(x...) # define fwerr(x...)
# define fwinfo(x...) # define fwinfo(x...)
# else # else
# define fderr (void) # define fwerr (void)
# define fwinfo (void) # define fwinfo (void)
# endif # endif
#endif #endif