diff options
author | unknown <sanja@askmonty.org> | 2011-10-18 13:44:12 +0300 |
---|---|---|
committer | unknown <sanja@askmonty.org> | 2011-10-18 13:44:12 +0300 |
commit | 255c04aed8b4159ac8402bc80bab3771c0236d40 (patch) | |
tree | 8d947e1a98f7f3eb9dce22ee44e49276d357ea4f /unittest | |
parent | 9f6e24a05a32c147f292cd6260d63a31cb8cd9db (diff) | |
download | mariadb-git-255c04aed8b4159ac8402bc80bab3771c0236d40.tar.gz |
Compiler warning about assigned but not used variables fixed.
Diffstat (limited to 'unittest')
-rw-r--r-- | unittest/mysys/lf-t.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/unittest/mysys/lf-t.c b/unittest/mysys/lf-t.c index 61b7ae08cf5..29de0a0e812 100644 --- a/unittest/mysys/lf-t.c +++ b/unittest/mysys/lf-t.c @@ -33,14 +33,13 @@ LF_HASH lf_hash; pthread_handler_t test_lf_pinbox(void *arg) { int m= *(int *)arg; - int32 x= 0; LF_PINS *pins; my_thread_init(); pins= lf_pinbox_get_pins(&lf_allocator.pinbox); - for (x= ((int)(intptr)(&m)); m ; m--) + for (; m ; m--) { lf_pinbox_put_pins(pins); pins= lf_pinbox_get_pins(&lf_allocator.pinbox); |