efl/ecore_x: remove shadow warning from makekeys

the warning didn't exist because we were not using cflags, now we will.

all these variables are not used outside main(), so keep them local.



SVN revision: 82473
This commit is contained in:
Gustavo Sverzut Barbieri 2013-01-09 16:39:07 +00:00
parent 8ac159bfe2
commit cde6032c2e
1 changed files with 5 additions and 5 deletions

View File

@ -44,11 +44,6 @@ static struct _Info
static int _parseline(const char *buf, char *key, long unsigned int *val, char *prefix);
/* local variables */
static char tab[TBLNUM];
static unsigned short offsets[TBLNUM];
static unsigned short indexes[TBLNUM];
static long unsigned int values[TBLNUM];
static char buf[1024];
static int ksnum = 0;
int
@ -63,6 +58,11 @@ main(int argc, char **argv)
int best_max_rehash = 0, best_z = 0;
long unsigned int val;
char key[128], prefix[128];
char tab[TBLNUM];
unsigned short offsets[TBLNUM];
unsigned short indexes[TBLNUM];
long unsigned int values[TBLNUM];
char buf[1024];
for (l = 1; l < argc; l++)
{