Commit 733be2a5 authored by Heikki Linnakangas's avatar Heikki Linnakangas

Remove unnecessary initialization of local variables.

Oops, forgot these in the prveious commit.
parent 33755e8e
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment