From: Michael Schroeder Date: Mon, 18 Apr 2011 09:52:38 +0000 (+0200) Subject: - remove stray semicolon. duh X-Git-Tag: BASE-SuSE-Code-12_1-Branch~71 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=43a9055624ef8618354d089157d646803a9e8503;p=platform%2Fupstream%2Flibsolv.git - remove stray semicolon. duh --- diff --git a/src/queue.c b/src/queue.c index b2de746..d22c382 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;