diff options
Diffstat (limited to 'winsup/cygwin/dtable.cc')
-rw-r--r-- | winsup/cygwin/dtable.cc | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/winsup/cygwin/dtable.cc b/winsup/cygwin/dtable.cc index 27af8709f..d7a9ffe0f 100644 --- a/winsup/cygwin/dtable.cc +++ b/winsup/cygwin/dtable.cc @@ -54,8 +54,6 @@ hinfo::extend (int howmuch) /* Try to allocate more space for fd table. We can't call realloc() here to preserve old table if memory allocation fails */ -debug_printf ("here size %d", size); - if (!(newfds = (fhandler_base **) calloc (new_size, sizeof newfds[0]))) { debug_printf ("calloc failed"); @@ -69,7 +67,7 @@ debug_printf ("here size %d", size); size = new_size; fds = newfds; - debug_printf ("size %d, fds %d", size, fds); + debug_printf ("size %d, fds %p", size, fds); return 1; } |