From f1bc6c5db44314c6dbb1fc7fd02decb8ab51a356 Mon Sep 17 00:00:00 2001 From: sebastid Date: Thu, 8 Jun 2006 20:03:42 +0000 Subject: [PATCH] Remove printf SVN revision: 23308 --- legacy/ecore/src/lib/ecore_x/ecore_x_icccm.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/legacy/ecore/src/lib/ecore_x/ecore_x_icccm.c b/legacy/ecore/src/lib/ecore_x/ecore_x_icccm.c index 65b317e30f..0ed2eda792 100644 --- a/legacy/ecore/src/lib/ecore_x/ecore_x_icccm.c +++ b/legacy/ecore/src/lib/ecore_x/ecore_x_icccm.c @@ -755,10 +755,7 @@ ecore_x_icccm_command_get(Ecore_X_Window win, int *argc, char ***argv) (*argv) = malloc(c); if (!*argv) return; for (i = 0; i < c; i++) - { - (*argv)[i] = strdup(v[i]); - printf("%s\n", v[i]); - } + (*argv)[i] = strdup(v[i]); } XFreeStringList(v); }