summaryrefslogtreecommitdiffstats
path: root/src/commandline/commands
diff options
context:
space:
mode:
Diffstat (limited to 'src/commandline/commands')
-rw-r--r--src/commandline/commands/help.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/commandline/commands/help.c b/src/commandline/commands/help.c
index 3074f18d0..758c3c1e8 100644
--- a/src/commandline/commands/help.c
+++ b/src/commandline/commands/help.c
@@ -11,10 +11,8 @@ void help_req(){}
static int cmd_help_exec ( int argc, char **argv ) {
struct command *ccmd;
- int unknown = 1;
-
- printf("Available commands:\n\n exit - Exit the command line and boot\n");
+ printf("Available commands:\n\n");
for ( ccmd = cmd_start ; ccmd < cmd_end ; ccmd++ ) {
printf (" %s\n", ccmd->name );