diff options
author | Pierre-Alexandre Meyer <pierre@mouraf.org> | 2009-11-18 20:18:04 -0800 |
---|---|---|
committer | Pierre-Alexandre Meyer <pierre@mouraf.org> | 2009-11-18 20:18:04 -0800 |
commit | 865599ca877c349d795c572dde6d786569c3dad5 (patch) | |
tree | 27912effaf8fd86448a7575fb41758664a93cb95 | |
parent | 1682c7e3b73c00727ddf4a5792633bded9d37e0e (diff) | |
download | syslinux-865599ca877c349d795c572dde6d786569c3dad5.tar.gz syslinux-865599ca877c349d795c572dde6d786569c3dad5.tar.xz syslinux-865599ca877c349d795c572dde6d786569c3dad5.zip |
hdt: trivial printf fix (CLI)
Remove a typo. This fixes a compilation warning.
Signed-off-by: Pierre-Alexandre Meyer <pierre@mouraf.org>
-rw-r--r-- | com32/hdt/hdt-cli.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/com32/hdt/hdt-cli.c b/com32/hdt/hdt-cli.c index 65750609..6ddd7c7b 100644 --- a/com32/hdt/hdt-cli.c +++ b/com32/hdt/hdt-cli.c @@ -659,7 +659,7 @@ static void exec_command(char *line, expand_aliases(line, &command, &module, &argc, argv); if (module == NULL) { - dprintf("CLI DEBUG: single command detected\n", CLI_SHOW); + dprintf("CLI DEBUG: single command detected\n"); /* * A single word was specified: look at the list of default * commands in the current mode to see if there is a match. |