Bug 836149: declare pseudoStackPos as uint32_t instead of int in TableTicker.cpp, to fix signed/unsigned comparison build warning. r=BenWa

This commit is contained in:
Daniel Holbert 2013-01-29 18:51:43 -08:00
Родитель a3c7a84ee5
Коммит 16cbaba0d6
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -844,7 +844,7 @@ void TableTicker::doBacktrace(ThreadProfile &aProfile, TickSample* aSample)
aProfile.addTag(ProfileEntry('s', "(root)"));
ProfileStack* stack = aProfile.GetStack();
int pseudoStackPos = 0;
uint32_t pseudoStackPos = 0;
/* We have two stacks, the native C stack we extracted from unwinding,
* and the pseudostack we managed during execution. We want to consolidate