Fix compilation error by fixing up more code. (Bug 735262) r=jrmuizel

This commit is contained in:
L. David Baron 2012-04-16 15:32:11 -07:00
parent 8a91f7ddcb
commit 5e31c7d89a

View File

@ -459,7 +459,7 @@ void TableTicker::doBacktrace(ThreadProfile &aProfile, TickSample* aSample)
void *array[100];
int count = backtrace (array, 100);
aProfile.addTag(ProfileEntry('s', "(root)", 0));
aProfile.addTag(ProfileEntry('s', "(root)"));
for (int i = 0; i < count; i++) {
if( (intptr_t)array[i] == -1 ) break;