e_backlight_main: fix compiling when not having Eeze

Summary:
EINA_UNUSED is defined in Eina. Since we are not using the program at all,
let's void main()'s arguments instead of trying to ignore them.

Test Plan: tested only on OSX, unbreaks the build.

Reviewers: zmike

Subscribers: cedric

Differential Revision: https://phab.enlightenment.org/D2387
This commit is contained in:
Jean Guyomarc'h 2015-04-20 17:03:22 -04:00 committed by Mike Blumenkrantz
parent ea7ec93af8
commit ba975e702f
1 changed files with 1 additions and 1 deletions

View File

@ -170,7 +170,7 @@ main(int argc, char **argv)
}
#else // !HAVE_EEZE && !__FreeBSD_kernel__
int
main(int argc EINA_UNUSED, char **argv EINA_UNUSED)
main(void)
{
return -1;
}