diff options
Diffstat (limited to 'wrapper/plugins.h')
-rw-r--r-- | wrapper/plugins.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/wrapper/plugins.h b/wrapper/plugins.h index 1e88279..c5fb53d 100644 --- a/wrapper/plugins.h +++ b/wrapper/plugins.h @@ -58,9 +58,6 @@ plugin_mk_command() { struct plugin_command *command; command=(struct plugin_command *)xmalloc(sizeof(*command)); - #ifdef DEBUG - printf("malloc'd command: %p\n",command); - #endif /* node */ command->name=NULL; @@ -83,10 +80,6 @@ plugin_free_command(struct plugin_command *command) { if (command!=NULL) { plugin_free_command(command->next); - #ifdef DEBUG - printf(" free'd command: %p \"%s\"\n", - command,command->name); - #endif xfree(command->name); xfree(command->depends); xfree(command); |