Mercurial > audlegacy
changeset 687:0a220c3183b8 trunk
[svn] Revert debug-only cleanup system verbosity.
author | chainsaw |
---|---|
date | Sat, 25 Feb 2006 09:36:36 -0800 |
parents | a1806a3cf3d2 |
children | cc1969408403 |
files | audacious/pluginenum.c |
diffstat | 1 files changed, 0 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/audacious/pluginenum.c Sat Feb 25 09:35:27 2006 -0800 +++ b/audacious/pluginenum.c Sat Feb 25 09:36:36 2006 -0800 @@ -29,7 +29,6 @@ #include <gmodule.h> #include <glib/gprintf.h> #include <string.h> -#include <stdio.h> #include "controlsocket.h" #include "main.h" @@ -365,7 +364,6 @@ for (node = get_input_list(); node; node = g_list_next(node)) { ip = INPUT_PLUGIN(node->data); if (ip && ip->cleanup) { - printf("Cleaning up input plugin %s\n", ip->filename); ip->cleanup(); GDK_THREADS_LEAVE(); while (g_main_iteration(FALSE)); @@ -380,7 +378,6 @@ for (node = get_output_list(); node; node = g_list_next(node)) { op = OUTPUT_PLUGIN(node->data); if (op && op->cleanup) { - printf("Cleaning up output plugin %s\n", op->filename); op->cleanup(); GDK_THREADS_LEAVE(); while (g_main_iteration(FALSE)); @@ -395,7 +392,6 @@ for (node = get_effect_list(); node; node = g_list_next(node)) { ep = EFFECT_PLUGIN(node->data); if (ep && ep->cleanup) { - printf("Cleaning up effect plugin %s\n", ep->filename); ep->cleanup(); GDK_THREADS_LEAVE(); while (g_main_iteration(FALSE)); @@ -422,7 +418,6 @@ for (node = get_general_list(); node; node = g_list_next(node)) { gp = GENERAL_PLUGIN(node->data); if (gp && gp->cleanup) { - printf("Cleaning up general plugin %s\n", gp->filename); gp->cleanup(); GDK_THREADS_LEAVE(); while (g_main_iteration(FALSE)); @@ -449,7 +444,6 @@ for (node = get_vis_list(); node; node = g_list_next(node)) { vp = VIS_PLUGIN(node->data); if (vp && vp->cleanup) { - printf("Cleaning up visualisation plugin %s\n", vp->filename); vp->cleanup(); GDK_THREADS_LEAVE(); while (g_main_iteration(FALSE));