From 8259db586ae57134039f6a01344d4169021709ae Mon Sep 17 00:00:00 2001 From: Corinna Vinschen Date: Wed, 22 Mar 2017 11:10:15 +0100 Subject: [PATCH] dlfcn: Remove stray debug output Signed-off-by: Corinna Vinschen --- winsup/cygwin/dlfcn.cc | 1 - winsup/cygwin/dll_init.cc | 1 - 2 files changed, 2 deletions(-) diff --git a/winsup/cygwin/dlfcn.cc b/winsup/cygwin/dlfcn.cc index 06e685447..5b21b3214 100644 --- a/winsup/cygwin/dlfcn.cc +++ b/winsup/cygwin/dlfcn.cc @@ -374,7 +374,6 @@ dlclose (void *handle) { /* reference counting */ dll *d = dlls.find (handle); - if (d) system_printf ("%W count %d", d->name, d->count); if (!d || d->count <= 0) { errno = ENOENT; diff --git a/winsup/cygwin/dll_init.cc b/winsup/cygwin/dll_init.cc index 490f1d688..a9143e769 100644 --- a/winsup/cygwin/dll_init.cc +++ b/winsup/cygwin/dll_init.cc @@ -436,7 +436,6 @@ dll_list::detach (void *retaddr) guard (true); if ((d = find (retaddr))) { - system_printf ("HERE %W", d->name); /* Ensure our exception handler is enabled for destructors */ exception protect; /* Call finalize function if we are not already exiting */ -- 2.43.5