Fix placement of __UNUSED__.

SVN revision: 51282
This commit is contained in:
Christopher Michael 2010-08-18 15:20:48 +00:00
parent c689865500
commit cbe3c3a21c
1 changed files with 2 additions and 2 deletions

View File

@ -46,7 +46,7 @@ read_ushort(FILE *file, unsigned short *ret)
static int
read_int(FILE *file, int *ret)
{
unsigned char b[4];
unsigned char b[4];
if (fread(b, sizeof(unsigned char), 4, file) != 4) return 0;
*ret = ARGB_JOIN(b[3], b[2], b[1], b[0]);
return 1;
@ -1105,7 +1105,7 @@ module_open(Evas_Module *em)
}
static void
module_close(__UNUSED__ Evas_Module *em)
module_close(Evas_Module *em __UNUSED__)
{
}