Skip to content

Commit

Permalink
sql_cacher: remove unused variable
Browse files Browse the repository at this point in the history
(cherry picked from commit 5f965a6)
  • Loading branch information
rvlad-patrascu committed Dec 3, 2020
1 parent bd0fa2a commit 84e74a6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions modules/sql_cacher/sql_cacher.c
Expand Up @@ -1139,7 +1139,7 @@ static void cache_init_load(int sender, void *param)

static int mod_init(void)
{
cache_entry_t *c_entry, *c_prev = NULL;
cache_entry_t *c_entry;
db_handlers_t *db_hdls;
char use_timer = 0;

Expand Down Expand Up @@ -1202,7 +1202,6 @@ static int mod_init(void)
db_hdls->next = db_hdls_list;
db_hdls_list = db_hdls;

c_prev = c_entry;
c_entry = c_entry->next;
}

Expand Down

0 comments on commit 84e74a6

Please sign in to comment.