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:
parent
5b14757a30
commit
71c9501a76
@ -709,7 +709,10 @@ uint64 STCOAtom::getOffsetForChunk(uint32 pChunkID)
|
||||
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();
|
||||
return 0LL;
|
||||
|
Loading…
Reference in New Issue
Block a user