summaryrefslogtreecommitdiff
path: root/wrapper/plugin-depend.h
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2009-09-12 22:32:44 -0400
committerLuke Shumaker <lukeshu@sbcglobal.net>2015-06-26 00:30:15 -0600
commitd9c1caf91aa18dfe383a678f618ca644cbba01ef (patch)
treebc13f438858e7fbe8fd4dd264c7265b1095e4fe4 /wrapper/plugin-depend.h
parent069d217aaa49e9dc285a264d2dce7eeb554a84e2 (diff)
this doesn't work/run, but it seems like /progress/
I'm beginning to get depressed about this :|
Diffstat (limited to 'wrapper/plugin-depend.h')
-rw-r--r--wrapper/plugin-depend.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/wrapper/plugin-depend.h b/wrapper/plugin-depend.h
index 7dc7f29..6b18bde 100644
--- a/wrapper/plugin-depend.h
+++ b/wrapper/plugin-depend.h
@@ -91,9 +91,6 @@ plugin_depend_command (struct plugin_command *command,
struct plugin_command *root, int ind)
{
if (command!=NULL) {
- #ifdef DEBUG
- plugin_print_command(command,ind);
- #endif
if (command->depend == NULL) {
/* the depend still needs to be parsed */
command->depend=plugin_depend_parse(
@@ -131,10 +128,6 @@ _plugin_depend_list (struct plugin_command_list *commands,
struct plugin_command *root,int ind)
{
if (commands!=NULL) {
- #ifdef DEBUG
- plugin_print_command(commands->command,ind);
- printf("%p\n",commands->next);
- #endif
plugin_depend_command(commands->command,plugins,root,ind++);
_plugin_depend_list(commands->next,plugins,root,ind++);
}
@@ -145,7 +138,7 @@ plugin_depend_list (struct plugin_command_list *commands,
struct plugin *plugins)
{
struct plugin_command *root=plugin_mk_command();
- _plugin_depend_list(commands->next,plugins,root,0);
+ _plugin_depend_list(commands,plugins,root,0);
return root;
}