From ad29d5520b1ba379a75adc447f301851ff4588a4 Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 7 Dec 2006 15:23:50 +0100 Subject: Maria - fix for "statement with no effect" warning mysys/lf_hash.c: fix for "statement with no effect" warning storage/maria/lockman.c: fix for "statement with no effect" warning --- storage/maria/lockman.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'storage/maria/lockman.c') diff --git a/storage/maria/lockman.c b/storage/maria/lockman.c index 54ea95c6b61..7672fadb068 100644 --- a/storage/maria/lockman.c +++ b/storage/maria/lockman.c @@ -287,7 +287,7 @@ retry: cur_flags= cursor->curr->flags; if (*cursor->prev != (intptr)cursor->curr) { - LF_BACKOFF; + (void)LF_BACKOFF; goto retry; } if (!DELETED(link)) @@ -364,7 +364,7 @@ retry: _lf_alloc_free(pins, cursor->curr); else { - LF_BACKOFF; + (void)LF_BACKOFF; goto retry; } } -- cgit v1.2.1