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:
Marcus Overhagen
2005-08-21 00:43:33 +00:00
parent 5b14757a30
commit 71c9501a76
@@ -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;