Remove useless initialisation of update_blocksize variable in update_blocksize()

This commit is contained in:
Christophe Grenier 2018-03-17 17:48:13 +01:00
parent ff49c01d42
commit e5a5e71d7c

View file

@ -448,7 +448,7 @@ unsigned int find_blocksize(alloc_data_t *list_search_space, const unsigned int
void update_blocksize(const unsigned int blocksize, alloc_data_t *list_search_space, const uint64_t offset)
{
struct td_list_head *search_walker = NULL;
struct td_list_head *search_walker;
struct td_list_head *search_walker_prev = NULL;
log_info("blocksize=%u, offset=%u\n", blocksize, (unsigned int)(offset%blocksize));
/* Align end of last range (round up) */