summaryrefslogtreecommitdiff
path: root/c/plugin.h
diff options
context:
space:
mode:
Diffstat (limited to 'c/plugin.h')
-rw-r--r--c/plugin.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/c/plugin.h b/c/plugin.h
index 92deed2..d5ede8f 100644
--- a/c/plugin.h
+++ b/c/plugin.h
@@ -31,12 +31,12 @@ struct plugin_command
char *name;
/*plugin ID*/
- struct plugin *plugin; /* which plugin does it belong to? */
+ struct plugin *plugin; /* which plugin does it belong to? */
struct plugin_command *p_next; /* next command in this plugin (linked list)*/
/*dependancy tree*/
struct plugin_command *depend; /* what does this depend on? */
- char *depends; /* what does this depend on? */
+ char *depends;/* what does this depend on? */
struct plugin_command *child; /* what depends on this? (linked list) */
struct plugin_command *d_next; /* next command w/ same dependancy (linked list) */
};
@@ -44,6 +44,6 @@ struct plugin_command
struct plugin_tree
{
struct plugin *plugins;
- struct plugin_command *depend;
+ struct plugin_command *depends;
};