summaryrefslogtreecommitdiff
path: root/nuttx/arch/avr/src/common/up_assert.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/arch/avr/src/common/up_assert.c')
-rw-r--r--nuttx/arch/avr/src/common/up_assert.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/arch/avr/src/common/up_assert.c b/nuttx/arch/avr/src/common/up_assert.c
index 12bb564d3..3e90094eb 100644
--- a/nuttx/arch/avr/src/common/up_assert.c
+++ b/nuttx/arch/avr/src/common/up_assert.c
@@ -61,7 +61,7 @@
*
* CONFIG_TASK_NAME_SIZE > 0 && <-- The task has a name
* (defined(CONFIG_DEBUG) || <-- And the debug is enabled (lldbg used)
- * defined(CONFIG_ARCH_STACKDUMP)) <-- Or lib_lowprintf() is used
+ * defined(CONFIG_ARCH_STACKDUMP)) <-- Or lowsyslog() is used
*/
#undef CONFIG_PRINT_TASKNAME
@@ -75,7 +75,7 @@
#ifdef CONFIG_ARCH_STACKDUMP
# undef lldbg
-# define lldbg lib_lowprintf
+# define lldbg lowsyslog
#endif
/****************************************************************************