summaryrefslogtreecommitdiff
path: root/mysys/lf_hash.c
diff options
context:
space:
mode:
authorunknown <guilhem@gbichot3.local>2006-12-07 15:23:50 +0100
committerunknown <guilhem@gbichot3.local>2006-12-07 15:23:50 +0100
commitad29d5520b1ba379a75adc447f301851ff4588a4 (patch)
tree1256e5348dccb5cc2c3de465cce42bcbbd5f01de /mysys/lf_hash.c
parent5750daa4cf73eba0a6f1d9909844bf106228ae80 (diff)
downloadmariadb-git-ad29d5520b1ba379a75adc447f301851ff4588a4.tar.gz
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
Diffstat (limited to 'mysys/lf_hash.c')
-rw-r--r--mysys/lf_hash.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mysys/lf_hash.c b/mysys/lf_hash.c
index 7e61ef690c6..b2ad7a93ace 100644
--- a/mysys/lf_hash.c
+++ b/mysys/lf_hash.c
@@ -96,7 +96,7 @@ retry:
cur_keylen= cursor->curr->keylen;
if (*cursor->prev != (intptr)cursor->curr)
{
- LF_BACKOFF;
+ (void)LF_BACKOFF;
goto retry;
}
if (!DELETED(link))
@@ -118,7 +118,7 @@ retry:
_lf_alloc_free(pins, cursor->curr);
else
{
- LF_BACKOFF;
+ (void)LF_BACKOFF;
goto retry;
}
}