Initialize a more variables in jim.c to allow gcc-4.4 to build.

Fix provided by Benjamin Schmidt <DeMonk@gmx.net>.


git-svn-id: svn://svn.berlios.de/openocd/trunk@1797 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
zwelch 2009-05-15 23:35:27 +00:00
parent 5cff9997c5
commit ea3ddc7e4f
1 changed files with 2 additions and 2 deletions

View File

@ -7642,8 +7642,8 @@ static int ScanOneEntry(Jim_Interp *interp, const char *str, long pos,
scanned += 1;
break;
case 'd': case 'o': case 'x': case 'u': case 'i': {
jim_wide jwvalue;
long lvalue;
jim_wide jwvalue = 0;
long lvalue = 0;
char *endp; /* Position where the number finished */
int base = descr->type == 'o' ? 8
: descr->type == 'x' ? 16