Bug 735262 - Fix the compilation error on profiling builds; r=me a=npotb

This commit is contained in:
Ehsan Akhgari 2012-04-18 12:55:48 -04:00
Родитель 8dc2081378
Коммит bf6e80e313
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -513,7 +513,7 @@ void TableTicker::doBacktrace(ThreadProfile &aProfile, TickSample* aSample)
nsresult rv = NS_StackWalk(StackWalkCallback, 0, &array, thread);
#endif
if (NS_SUCCEEDED(rv)) {
aProfile.addTag(ProfileEntry('s', "(root)", 0));
aProfile.addTag(ProfileEntry('s', "(root)"));
for (size_t i = array.count; i > 0; --i) {
aProfile.addTag(ProfileEntry('l', (const char*)array.array[i - 1]));