summaryrefslogtreecommitdiff
path: root/apps/examples/igmp/igmp.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/examples/igmp/igmp.h')
-rw-r--r--apps/examples/igmp/igmp.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/examples/igmp/igmp.h b/apps/examples/igmp/igmp.h
index 093f58c1f..5e1fa8d95 100644
--- a/apps/examples/igmp/igmp.h
+++ b/apps/examples/igmp/igmp.h
@@ -46,12 +46,12 @@
* Definitions
****************************************************************************/
-/* Used lib_rawprintf() so that there is no confusion from buffered IO */
+/* Used syslog() so that there is no confusion from buffered IO */
#ifdef CONFIG_CPP_HAVE_VARARGS
-# define message(...) lib_rawprintf(__VA_ARGS__)
+# define message(...) syslog(__VA_ARGS__)
#else
-# define message lib_rawprintf
+# define message syslog
#endif
/****************************************************************************