From 6b754da7041df93aad41d73edfc387c941e660ce Mon Sep 17 00:00:00 2001 From: Gene Cumm Date: Fri, 24 Jan 2014 19:43:37 -0500 Subject: [PATCH] com32/modules/poweroff.c: fix main() Wrong prototype; use GCC unused Signed-off-by: Gene Cumm --- com32/modules/poweroff.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.7.4