From 43a9055624ef8618354d089157d646803a9e8503 Mon Sep 17 00:00:00 2001 From: Michael Schroeder Date: Mon, 18 Apr 2011 11:52:38 +0200 Subject: [PATCH] - remove stray semicolon. duh --- src/queue.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/queue.c b/src/queue.c index b2de7468..d22c3820 100644 --- a/src/queue.c +++ b/src/queue.c @@ -94,7 +94,7 @@ queue_alloc_one_head(Queue *q) if (!q->alloc || !q->left) queue_alloc_one(q); l = q->left > EXTRA_SPACE_HEAD ? EXTRA_SPACE_HEAD : q->left; - if (q->count); + if (q->count) memmove(q->elements + l, q->elements, q->count * sizeof(Id)); q->elements += l; q->left -= l; -- 2.47.2