We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e6909e commit 778876aCopy full SHA for 778876a
lib/at_monitor/at_monitor.c
@@ -75,8 +75,8 @@ void at_monitor_dispatch(const char *notif)
75
76
at_notif = k_heap_alloc(&at_monitor_heap, sz_needed, K_NO_WAIT);
77
if (!at_notif) {
78
- LOG_WRN("No heap space for incoming notification: %s",
79
- notif);
+ LOG_WRN("No heap space for incoming notification: %s", notif);
+ __ASSERT(at_notif, "No heap space for incoming notification: %s", notif);
80
return;
81
}
82
0 commit comments