From: Gene Cumm Date: Sat, 25 Jan 2014 00:43:37 +0000 (-0500) Subject: com32/modules/poweroff.c: fix main() X-Git-Tag: syslinux-6.03~86^2~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6b754da7041df93aad41d73edfc387c941e660ce;p=platform%2Fupstream%2Fsyslinux.git com32/modules/poweroff.c: fix main() Wrong prototype; use GCC unused Signed-off-by: Gene Cumm --- diff --git a/com32/modules/poweroff.c b/com32/modules/poweroff.c index 8b656ad..e9af603 100644 --- a/com32/modules/poweroff.c +++ b/com32/modules/poweroff.c @@ -20,7 +20,7 @@ #include #include -int main() +int main(__attribute__((unused)) int argc, __attribute__((unused)) char *argv[]) { com32sys_t inregs, outregs;