Skip to content
Permalink
Browse files
[QBSS] Suppress no free slot log
  • Loading branch information
darthcloud committed Dec 10, 2021
1 parent c79e7bf commit 12ba75e5868e6eb19231d108557d58081ac85df7
Showing with 1 addition and 1 deletion.
  1. +1 −1 components/queue_bss/queue_bss.c
@@ -96,7 +96,7 @@ int32_t queue_bss_enqueue(queue_bss_handle_t qhdl, uint8_t *item, uint32_t item_
}

if (!lfds711_queue_bss_dequeue(&q->item_free_state, (void **)&qitem_len, (void **)&qitem)) {
ets_printf("queue_bss: No free slot\n");
//ets_printf("queue_bss: No free slot\n");
return -1;
}
memcpy(qitem, item, item_len);

0 comments on commit 12ba75e

Please sign in to comment.