fixed wrong usage of DEBUGGER macro
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@14018 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -709,7 +709,10 @@ uint64 STCOAtom::getOffsetForChunk(uint32 pChunkID)
|
|||||||
return theChunkToOffsetArray[pChunkID - 1]->Offset;
|
return theChunkToOffsetArray[pChunkID - 1]->Offset;
|
||||||
}
|
}
|
||||||
|
|
||||||
DEBUGGER(("Bad Chunk ID %ld / %ld\n",pChunkID,theHeader.NoEntries));
|
#if DEBUG
|
||||||
|
char msg[100]; sprintf(msg, "Bad Chunk ID %ld / %ld\n", pChunkID, theHeader.NoEntries);
|
||||||
|
DEBUGGER(msg);
|
||||||
|
#endif
|
||||||
|
|
||||||
TRESPASS();
|
TRESPASS();
|
||||||
return 0LL;
|
return 0LL;
|
||||||
|
|||||||
Reference in New Issue
Block a user