* eet_data: Remove some warning.

SVN revision: 40725
This commit is contained in:
Cedric BAIL 2009-05-18 14:46:32 +00:00
parent 72e17e3589
commit 16ae86eacb
1 changed files with 2 additions and 3 deletions

View File

@ -2179,7 +2179,6 @@ _eet_data_descriptor_decode(Eet_Free_Context *context,
void *data = NULL;
char *p;
int size, i, dump;
int chnk_type;
Eet_Data_Chunk chnk;
if (words_bigendian == -1)
@ -2290,7 +2289,7 @@ _eet_data_descriptor_decode(Eet_Free_Context *context,
{
ret = eet_group_codec[group_type - 100].get(context,
ed, edd, ede, &echnk,
type, group_type, ede ? ((char *)data) + ede->offset : dd,
type, group_type, ede ? (void*) (((char *)data) + ede->offset) : dd,
level, dumpfunc, dumpdata,
&p, &size);
if (ret <= 0) goto error;
@ -2699,7 +2698,7 @@ eet_data_dump_simple_type(int type, const char *name, void *dd,
dumpfunc(dumpdata, "null");
break;
default:
dumpfunc(dumpdata, "???: ???"); break;
dumpfunc(dumpdata, "???: ???");
break;
}
dumpfunc(dumpdata, ";\n");