From 1ea1cc5cdedfa2b65c19f7a852f8b8a43bbb46e5 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Mon, 20 Jun 2016 16:31:47 -0600 Subject: [PATCH] Fix fwdbg vs fwerr naming inconsisency --- netutils/thttpd/fdwatch.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/netutils/thttpd/fdwatch.c b/netutils/thttpd/fdwatch.c index 221e41065..f01f3f66e 100644 --- a/netutils/thttpd/fdwatch.c +++ b/netutils/thttpd/fdwatch.c @@ -62,18 +62,18 @@ #ifdef CONFIG_THTTPD_FDWATCH_DEBUG # ifdef CONFIG_CPP_HAVE_VARARGS -# define fwdbg(format, ...) nerr(format, ##__VA_ARGS__) +# define fderr(format, ...) nerr(format, ##__VA_ARGS__) # define fwinfo(format, ...) ninfo(format, ##__VA_ARGS__) # else -# define fwdbg nerr +# define fderr nerr # define fwinfo ninfo # endif #else # ifdef CONFIG_CPP_HAVE_VARARGS -# define fwdbg(x...) +# define fderr(x...) # define fwinfo(x...) # else -# define fwdbg (void) +# define fderr (void) # define fwinfo (void) # endif #endif