Your message dated Thu, 21 Sep 2006 22:21:17 -0400
with message-id <[EMAIL PROTECTED]>
has caused the Debian Bug report #385800,
regarding libassa: FTBFS on 64 bit arches: error: cast from
'ASSA::EventHandler*' to 'int' loses precision
to be marked as having been forwarded to the upstream software
author(s) [EMAIL PROTECTED]
(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere. Please contact me immediately.)
Debian bug tracking system administrator
(administrator, Debian Bugs database)
--- Begin Message ---
Hi Vladislav,
libassa fails to build again on 64bit arches. This patch fixes the
issue.
--
Eric Dorland <[EMAIL PROTECTED]>
ICQ: #61138586, Jabber: [EMAIL PROTECTED]
1024D/16D970C6 097C 4861 9934 27A0 8E1C 2B0A 61E9 8ECF 16D9 70C6
--- Begin Message ---
This patch uses %p to format pointers, instead of %x with an int cast.
--- assa/Reactor.cpp.orig 2006-08-13 20:56:22.000000000 +0200
+++ assa/Reactor.cpp 2006-09-17 23:27:00.821168000 +0200
@@ -247,8 +247,8 @@
}
if (ret == true) {
- DL((REACT,"Found EvtH \"%s\"(0x%X)\n",
- eh_->get_id ().c_str (),int(eh_)));
+ DL((REACT,"Found EvtH \"%s\"(%p)\n",
+ eh_->get_id ().c_str (),eh_));
eh_->handle_close (fd);
}
@@ -327,8 +327,8 @@
}
if (ret == true && ehp != NULL) {
- DL((REACT,"Removed EvtH \"%s\"(0x%X)\n",
- ehp->get_id ().c_str (), int(ehp)));
+ DL((REACT,"Removed EvtH \"%s\"(%p)\n",
+ ehp->get_id ().c_str (), ehp));
ehp->handle_close (fd_);
}
--- End Message ---
signature.asc
Description: Digital signature
--- End Message ---