diff options
author | James Booth <boothj5@gmail.com> | 2013-04-21 02:42:27 +0100 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2013-04-21 02:42:27 +0100 |
commit | f110a8fe3baf4149cde34d6c8fd6a3230d6a21b1 (patch) | |
tree | 4533e985919648d88b47a83dd7e0d60472114ff5 /src/command | |
parent | a3b861a71143036df15494a2ae734077734ef5b3 (diff) | |
download | profani-tty-f110a8fe3baf4149cde34d6c8fd6a3230d6a21b1.tar.gz |
Removed cons_bad_command()
Diffstat (limited to 'src/command')
-rw-r--r-- | src/command/command.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command/command.c b/src/command/command.c index 5ceb004a..f5e84da9 100644 --- a/src/command/command.c +++ b/src/command/command.c @@ -1036,7 +1036,7 @@ cmd_execute_default(const char * const inp) free(recipient); } } else { - cons_bad_command(inp); + cons_show("Unknown command: %s", inp); } return TRUE; |