From 5da81ffbf8f0020eb59ead3e4760e05f6cf95329 Mon Sep 17 00:00:00 2001 From: Jeremy Tubongbanua Date: Tue, 30 Jul 2024 12:53:39 -0400 Subject: [PATCH] fix: --- examples/desktop/at_talk/src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/desktop/at_talk/src/main.c b/examples/desktop/at_talk/src/main.c index d5fa90f3..b76752f9 100644 --- a/examples/desktop/at_talk/src/main.c +++ b/examples/desktop/at_talk/src/main.c @@ -250,7 +250,7 @@ static void *monitor_handler(void *xargs) { goto exit; } atclient_monitor_set_read_timeout(monitor, READ_TIMEOUT); // blocking read takes 1 second to timeout - if ((ret = atclient_monitor_start(monitor, MONITOR_REGEX) != 0) { + if ((ret = atclient_monitor_start(monitor, MONITOR_REGEX)) != 0) { atlogger_log(TAG, ATLOGGER_LOGGING_LEVEL_ERROR, "Failed to start monitor: %d\n", ret); goto exit; }