From 0de6819f938e8e65c892907527f69203a41907ee Mon Sep 17 00:00:00 2001 From: Nick Porter Date: Mon, 8 Sep 2025 16:48:12 +0100 Subject: [PATCH] Correct comment --- src/lib/io/atomic_queue.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/io/atomic_queue.c b/src/lib/io/atomic_queue.c index 7bf0bcdaf1..645e7382ff 100644 --- a/src/lib/io/atomic_queue.c +++ b/src/lib/io/atomic_queue.c @@ -230,7 +230,7 @@ bool fr_atomic_queue_pop(fr_atomic_queue_t *aq, void **p_data) diff = (seq - (tail + 1)); /* - * tail is smaller than the current entry, the queue is full. + * tail is smaller than the current entry, the queue is empty. */ if (diff < 0) { return false; -- 2.47.3