]> sourceware.org Git - newlib-cygwin.git/commitdiff
* hinfo.cc (hinfo::extend): Clean up debugging output.
authorChristopher Faylor <me@cgf.cx>
Thu, 24 Feb 2000 03:00:37 +0000 (03:00 +0000)
committerChristopher Faylor <me@cgf.cx>
Thu, 24 Feb 2000 03:00:37 +0000 (03:00 +0000)
winsup/cygwin/ChangeLog
winsup/cygwin/dtable.cc

index 13c22d82e66ddd2d9b4a04681f08a95ff7873349..ddca9e0a8a831f24a037c0cfc83e8adda3c8df33 100644 (file)
@@ -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
index 27af8709f057268d598be1b5e77a16d857bc84da..d7a9ffe0ff573ce3d76f16c02d6bf8e1a37b3135 100644 (file)
@@ -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;
 }
 
This page took 0.035523 seconds and 5 git commands to generate.