* fhandler.cc (fhandler_base::dup): Use debug_printf.

This commit is contained in:
Corinna Vinschen 2004-09-10 08:34:37 +00:00
parent 4875a4b66e
commit d495ee9ff0
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2004-09-10 Corinna Vinschen <corinna@vinschen.de>
* fhandler.cc (fhandler_base::dup): Use debug_printf.
2004-09-10 Corinna Vinschen <corinna@vinschen.de>
* Makefile.in: Create libutil.a from bsdlib.o exports.

View File

@ -1245,8 +1245,8 @@ fhandler_base::dup (fhandler_base *child)
if (!DuplicateHandle (hMainProc, get_handle (), hMainProc, &nh, 0, TRUE,
DUPLICATE_SAME_ACCESS))
{
system_printf ("dup(%s) failed, handle %x, %E",
get_name (), get_handle ());
debug_printf ("dup(%s) failed, handle %x, %E",
get_name (), get_handle ());
__seterrno ();
return -1;
}