summaryrefslogtreecommitdiff
path: root/storage/heap
diff options
context:
space:
mode:
authorMarko Mäkelä <marko.makela@mariadb.com>2022-07-26 08:18:36 +0300
committerMarko Mäkelä <marko.makela@mariadb.com>2022-07-26 08:18:36 +0300
commit95eb5e5a12c4b8125b38dfb54366fe4873e21394 (patch)
treecd114e7a1a76f0d0c723b63731dbc07161b49f9d /storage/heap
parent5d0f75349f21df63cc75cf2a1dfb9295a1c2b6a1 (diff)
downloadmariadb-git-95eb5e5a12c4b8125b38dfb54366fe4873e21394.tar.gz
Fix clang -Wunused-but-set-variable in unit tests
Diffstat (limited to 'storage/heap')
-rw-r--r--storage/heap/hp_test1.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/storage/heap/hp_test1.c b/storage/heap/hp_test1.c
index 88eaf73f550..03054843c7e 100644
--- a/storage/heap/hp_test1.c
+++ b/storage/heap/hp_test1.c
@@ -30,7 +30,7 @@ static int flag=0,verbose=0,remove_ant=0,flags[50];
int main(int argc, char **argv)
{
- int i,j,error,deleted;
+ int i,j,error;
HP_INFO *file;
uchar record[128],key[32];
const char *filename;
@@ -62,7 +62,6 @@ int main(int argc, char **argv)
keyinfo[0].seg[0].null_bit= 0;
keyinfo[0].flag = HA_NOSAME;
- deleted=0;
bzero((uchar*) flags,sizeof(flags));
printf("- Creating heap-file\n");
@@ -110,8 +109,6 @@ int main(int argc, char **argv)
if (error || verbose)
printf("key: %s delete: %d my_errno: %d\n",(char*) key,error,my_errno);
flags[j]=0;
- if (! error)
- deleted++;
}
if (heap_check_heap(file,0))
{