Make more clear the output when removing fields from a request

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@26636 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Oliver Ruiz Dorantes 2008-07-25 19:27:32 +00:00
parent 047a9a81c2
commit 0e5e9538e0

View File

@ -106,7 +106,7 @@ LocalDeviceHandler::ClearWantedEvent(BMessage* msg, uint16 event, uint16 opcode)
((uint16)opcodeFound == opcode) ) {
// this should remove only the entry
printf("Removed event@%d and opcode %d from request %p\n", event, opcode, msg);
printf("Removed event %#x and opcode %d from request %p\n", event, opcode, msg);
(void)msg->RemoveData("eventExpected", eventIndex);
(void)msg->RemoveData("opcodeExpected", eventIndex);
goto finish;