From 60d599f3a79f1ea8e8f924b83b7e48b372912485 Mon Sep 17 00:00:00 2001 From: Carsten Haitzler Date: Wed, 5 Oct 2005 08:52:59 +0000 Subject: [PATCH] found the bug! no more printf needed SVN revision: 17189 --- src/bin/e_apps.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/bin/e_apps.c b/src/bin/e_apps.c index ba3bccba5..7976880cb 100644 --- a/src/bin/e_apps.c +++ b/src/bin/e_apps.c @@ -635,9 +635,6 @@ e_app_launch_id_pid_find(int launch_id, pid_t pid) if (((launch_id > 0) && (ai->launch_id > 0) && (ai->launch_id == launch_id)) || ((pid > 1) && (ai->exe) && (ecore_exe_pid_get(ai->exe) == pid))) { - printf("IC: ai->launch_id [%i] == launch_id [%i] | ai->exe->pid [%i] == pid [%i]\n", - ai->launch_id, launch_id, ecore_exe_pid_get(ai->exe), pid); - printf(" RET %s\n", a->name); _e_apps_list = evas_list_remove_list(_e_apps_list, l); _e_apps_list = evas_list_prepend(_e_apps_list, a); return a;