diff options
author | Erwan Velu <erwan.velu@free.fr> | 2009-03-20 23:03:28 +0100 |
---|---|---|
committer | Erwan Velu <erwan.velu@free.fr> | 2009-03-20 23:03:28 +0100 |
commit | 01cbf8b2579a38902df7b64f182802788bd2de36 (patch) | |
tree | 12f583790c76f7755338509895cb92eacb375b87 /com32 | |
parent | 2457bc3c938309b49e689c4853c2b55339256293 (diff) | |
download | syslinux-01cbf8b2579a38902df7b64f182802788bd2de36.tar.gz syslinux-01cbf8b2579a38902df7b64f182802788bd2de36.tar.xz syslinux-01cbf8b2579a38902df7b64f182802788bd2de36.zip |
hdt: commenting some devel messages
Impact: remove useless error messages
Some error messages were displayed even if commands were valid
Diffstat (limited to 'com32')
-rw-r--r-- | com32/hdt/hdt-cli.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/com32/hdt/hdt-cli.c b/com32/hdt/hdt-cli.c index 5d498c2e..51f68048 100644 --- a/com32/hdt/hdt-cli.c +++ b/com32/hdt/hdt-cli.c @@ -297,7 +297,7 @@ static void exec_command(char *command, struct s_cli *cli, /* Execute the callback */ current_module.exec(argc, argv, hardware); } else - printf("Module %s unknown.\n", module); +// printf("Module %s unknown.\n", module); /* XXX Add a default help option for empty commands */ free(module); @@ -308,7 +308,7 @@ static void exec_command(char *command, struct s_cli *cli, } /* Handle here other keywords such as 'set', ... */ } else - printf("Mode '%s' unknown.\n", command); +// printf("Mode '%s' unknown.\n", command); /* Legacy cli */ switch (cli->mode) { |