about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2012-07-29 00:33:10 +0100
committerJames Booth <boothj5@gmail.com>2012-07-29 00:33:10 +0100
commit45e2415b715756aa0f0df14ae310a5ee1d89862d (patch)
tree790dff622040bdb10022408b8e9c21e26d2b20d1 /src
parent5b769a3ff0c8cdf31d576adb5c3e49278c5bc933 (diff)
downloadprofani-tty-45e2415b715756aa0f0df14ae310a5ee1d89862d.tar.gz
Fixed num commands
Diffstat (limited to 'src')
-rw-r--r--src/command.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/command.c b/src/command.c
index 26fb68c8..fd9d4e9a 100644
--- a/src/command.c
+++ b/src/command.c
@@ -76,7 +76,6 @@ static struct cmd_t commands[] = {
     { "/connect", _cmd_connect },
     { "/dnd", _cmd_dnd },
     { "/flash", _cmd_set_flash },
-    { "/help", _cmd_help },
     { "/prefs", _cmd_prefs },
     { "/msg", _cmd_msg },
     { "/tiny", _cmd_tiny },
@@ -87,9 +86,10 @@ static struct cmd_t commands[] = {
     { "/chlog", _cmd_set_chlog },
     { "/who", _cmd_who },
     { "/xa", _cmd_xa },
+    { "/help", _cmd_help }
 };
 
-static const int num_cmds = 17;
+static const int num_cmds = 19;
     
 gboolean
 process_input(char *inp)