]> sjero.net Git - wget/blobdiff - src/host.c
[svn] Announce the beginning and the end of the SSL handshake when in debug mode.
[wget] / src / host.c
index 14a7a29d11d6ee8af62fa6b79090b9d7fc0257e8..f1fb64e7d3f7d040371711f15ca2f0942d9be873 100644 (file)
@@ -311,10 +311,11 @@ void
 address_list_release (struct address_list *al)
 {
   --al->refcount;
-  DEBUGP (("Releasing %p (new refcount %d).\n", al, al->refcount));
+  DEBUGP (("Releasing 0x%0*lx (new refcount %d).\n", PTR_FORMAT (al),
+          al->refcount));
   if (al->refcount <= 0)
     {
-      DEBUGP (("Deleting unused %p.\n", al));
+      DEBUGP (("Deleting unused 0x%0*lx.\n", PTR_FORMAT (al)));
       address_list_delete (al);
     }
 }