From f466584b96faa221a73e16d3ca10917551bd3031 Mon Sep 17 00:00:00 2001 From: Carsten Haitzler Date: Sat, 14 Jan 2006 12:41:02 +0000 Subject: [PATCH] remove printfs SVN revision: 19778 --- legacy/evas/src/lib/file/evas_module.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/legacy/evas/src/lib/file/evas_module.c b/legacy/evas/src/lib/file/evas_module.c index 2ad2d5c37d..7a2ba5a1d5 100644 --- a/legacy/evas/src/lib/file/evas_module.c +++ b/legacy/evas/src/lib/file/evas_module.c @@ -125,7 +125,7 @@ evas_module_init(void) Evas_List *l; int new_id = 1; - printf("[init modules]\n"); +// printf("[init modules]\n"); evas_module_paths_init(); for (l = evas_module_paths; l; l = l->next) { @@ -136,7 +136,7 @@ evas_module_init(void) mp = l->data; if (!(dir = opendir(mp->path))) break; - printf("[evas module] searching modules on %s\n", mp->path); +// printf("[evas module] searching modules on %s\n", mp->path); while (de = readdir(dir)) { char *buf; @@ -168,7 +168,7 @@ evas_module_init(void) new_id++; } } - printf("[evas module] including module path %s/%s of type %d\n",em->path, em->name, em->type); +// printf("[evas module] including module path %s/%s of type %d\n",em->path, em->name, em->type); evas_modules = evas_list_append(evas_modules, em); } free(buf);