Rename *lldbg to *llerr

This commit is contained in:
Gregory Nutt
2016-06-11 14:55:27 -06:00
parent 86b79b33cf
commit e99301d7c2
646 changed files with 2688 additions and 2688 deletions
+4 -4
View File
@@ -187,24 +187,24 @@
#ifdef CONFIG_VNCSERVER_UPDATE_DEBUG
# ifdef CONFIG_CPP_HAVE_VARARGS
# define upddbg(format, ...) dbg(format, ##__VA_ARGS__)
# define updlldbg(format, ...) lldbg(format, ##__VA_ARGS__)
# define updllerr(format, ...) llerr(format, ##__VA_ARGS__)
# define updinfo(format, ...) info(format, ##__VA_ARGS__)
# define updllinfo(format, ...) llinfo(format, ##__VA_ARGS__)
# else
# define upddbg dbg
# define updlldbg lldbg
# define updllerr llerr
# define updinfo info
# define updllinfo llinfo
# endif
#else
# ifdef CONFIG_CPP_HAVE_VARARGS
# define upddbg(x...)
# define updlldbg(x...)
# define updllerr(x...)
# define updinfo(x...)
# define updllinfo(x...)
# else
# define upddbg (void)
# define updlldbg (void)
# define updllerr (void)
# define updinfo (void)
# define updllinfo (void)
# endif