From ab83a12cffc93018786959b1d1d4023c784c4425 Mon Sep 17 00:00:00 2001 From: YAMAMOTO Takashi Date: Tue, 1 Dec 2020 14:10:24 +0900 Subject: [PATCH] netutils/chat/chat.c: Avoid assumping debug macro expansion --- netutils/chat/chat.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/netutils/chat/chat.c b/netutils/chat/chat.c index 2e883ed11..2a319f610 100644 --- a/netutils/chat/chat.c +++ b/netutils/chat/chat.c @@ -682,7 +682,9 @@ static int chat_script_run(FAR struct chat *priv) } } +#ifdef CONFIG_DEBUG_INFO _info("Script result %d, exited on line %d\n", ret, line_num); +#endif return ret; }