summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2000-02-24 03:00:37 +0000
committerChristopher Faylor <me@cgf.cx>2000-02-24 03:00:37 +0000
commit41f42725a2e64eb5993f1729e432dd3b897853e0 (patch)
tree9a759da2ae335271faa422b14b0bc2e4fc475557 /winsup/cygwin
parentf02f1f144422e878a30befcdda6f10df4b065663 (diff)
downloadcygnal-41f42725a2e64eb5993f1729e432dd3b897853e0.tar.gz
cygnal-41f42725a2e64eb5993f1729e432dd3b897853e0.tar.bz2
cygnal-41f42725a2e64eb5993f1729e432dd3b897853e0.zip
* hinfo.cc (hinfo::extend): Clean up debugging output.
Diffstat (limited to 'winsup/cygwin')
-rw-r--r--winsup/cygwin/ChangeLog4
-rw-r--r--winsup/cygwin/dtable.cc4
2 files changed, 5 insertions, 3 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index 13c22d82e..ddca9e0a8 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,3 +1,7 @@
+Wed Feb 23 21:59:44 2000 Christopher Faylor <cgf@cygnus.com>
+
+ * hinfo.cc (hinfo::extend): Clean up debugging output.
+
Wed Feb 23 21:34:58 2000 Christopher Faylor <cgf@cygnus.com>
* exceptions.cc (interruptible): Change method for determining if
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;
}