From ba541fd5103145e860c6d7e6fff7c182cf34f7c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Revol?= Date: Sat, 23 Jun 2012 15:51:34 +0200 Subject: [PATCH] shell: Fix GUI build * Fix shell_exit() signature, it's called without any argument. --- apps/shell/gui-shell.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/shell/gui-shell.c b/apps/shell/gui-shell.c index 3771538f4..19e8a5b0d 100644 --- a/apps/shell/gui-shell.c +++ b/apps/shell/gui-shell.c @@ -102,7 +102,7 @@ shell_prompt(char *str) } /*-----------------------------------------------------------------------------------*/ void -shell_exit(char *str) +shell_exit(void) { ctk_window_close(&window); }