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 e7c8b12 commit dfd9681
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions modules/sql_cacher/sql_cacher.c
Expand Up @@ -1152,7 +1152,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 @@ -1215,7 +1215,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 dfd9681

Please sign in to comment.