diff options
author | unknown <guilhem@gbichot3.local> | 2006-12-07 15:23:50 +0100 |
---|---|---|
committer | unknown <guilhem@gbichot3.local> | 2006-12-07 15:23:50 +0100 |
commit | ad29d5520b1ba379a75adc447f301851ff4588a4 (patch) | |
tree | 1256e5348dccb5cc2c3de465cce42bcbbd5f01de /storage/maria/lockman.c | |
parent | 5750daa4cf73eba0a6f1d9909844bf106228ae80 (diff) | |
download | mariadb-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 'storage/maria/lockman.c')
-rw-r--r-- | storage/maria/lockman.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; } } |