summaryrefslogtreecommitdiff
path: root/wrapper/plugin-depend.h
diff options
context:
space:
mode:
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;
}