Remove unnecessary initialization of local variables.

Oops, forgot these in the prveious commit.
This commit is contained in:
Heikki Linnakangas 2014-10-10 13:00:53 +03:00
parent 33755e8edf
commit 733be2a5cd
1 changed files with 2 additions and 2 deletions

View File

@ -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;