KMessage::Dump(): Fixed broken format.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39452 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2005-2009, Ingo Weinhold, [email protected].
|
||||
* Copyright 2005-2010, Ingo Weinhold, [email protected].
|
||||
* Distributed under the terms of the MIT License.
|
||||
*/
|
||||
|
||||
@@ -635,8 +635,8 @@ void
|
||||
KMessage::Dump(void (*printFunc)(const char*, ...)) const
|
||||
{
|
||||
Header* header = _Header();
|
||||
printFunc("KMessage: buffer: %p (size/capacity: %ld/%ld), flags: 0x0lx\n",
|
||||
fBuffer, header->size, fBufferCapacity, fFlags);
|
||||
printFunc("KMessage: buffer: %p (size/capacity: %ld/%ld), flags: %#"
|
||||
B_PRIx32 "\n", fBuffer, header->size, fBufferCapacity, fFlags);
|
||||
|
||||
KMessageField field;
|
||||
while (GetNextField(&field) == B_OK) {
|
||||
|
||||
Reference in New Issue
Block a user