fixed last commit
[NeonServV5.git] / modcmd.h
index 4bff7d9110ddc47c6fa7a7ca5510c820bf671a9b..673f74c92716c9c1c1b2a3509b67539d843da911 100644 (file)
--- a/modcmd.h
+++ b/modcmd.h
@@ -14,8 +14,8 @@ struct cmd_function {
     int botid;
     cmd_bind_t *func;
     
-    struct cmd_binding *next;
-}
+    struct cmd_function *next;
+};
 
 struct cmd_binding {
     char *cmd;
@@ -23,14 +23,14 @@ struct cmd_binding {
     struct cmd_function *func;
     
     struct cmd_binding *next;
-}
+};
 
 struct trigger_cache {
     int botid;
     char *trigger;
     
     struct trigger_cache *next;
-}
+};
 
 void init_modcmd();
 struct* ClientSocket get_prefered_bot(int botid);