remvoe printfs's

SVN revision: 36094
This commit is contained in:
Carsten Haitzler 2008-09-19 09:47:00 +00:00
parent 0b0dfa93a7
commit d0a7731bbb
2 changed files with 0 additions and 5 deletions

View File

@ -124,7 +124,6 @@ e_canvas_cache_flush(void)
}
edje_file_cache_flush();
edje_collection_cache_flush();
printf("...caches flushed.\n");
}
EAPI void

View File

@ -290,17 +290,13 @@ _e_exec_cb_exit(void *data, int type, void *event)
E_Exec_Instance *inst;
ev = event;
printf("child exit...\n");
if (!ev->exe) return 1;
if (ecore_exe_tag_get(ev->exe)) printf(" tag %s\n", ecore_exe_tag_get(ev->exe));
if (!(ecore_exe_tag_get(ev->exe) &&
(!strcmp(ecore_exe_tag_get(ev->exe), "E/exec")))) return 1;
inst = ecore_exe_data_get(ev->exe);
printf(" inst = %p\n", inst);
if (!inst) return 1;
printf(" inst exec line -- '%s'\n", ecore_exe_cmd_get(inst->exe));
/* /bin/sh uses this if cmd not found */
if ((ev->exited) &&
((ev->exit_code == 127) || (ev->exit_code == 255)))