Skip to content
Snippets Groups Projects
Commit 733be2a5 authored by Heikki Linnakangas's avatar Heikki Linnakangas
Browse files

Remove unnecessary initialization of local variables.

Oops, forgot these in the prveious commit.
parent 33755e8e
No related branches found
No related tags found
No related merge requests found
......@@ -307,8 +307,8 @@ check_locale_and_encoding(DbInfo *olddb, DbInfo *newdb)
static bool
equivalent_locale(int category, const char *loca, const char *locb)
{
const char *chara = strrchr(loca, '.');
const char *charb = strrchr(locb, '.');
const char *chara;
const char *charb;
char *canona;
char *canonb;
int lena;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment