зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1045110 - Add parens around assignment in "while" condition, to silence GCC Wparentheses warning. r=njn
This commit is contained in:
Родитель
2a9de5bb3b
Коммит
ff3ada8eb7
|
@ -100,7 +100,7 @@ GetProcSelfSmapsPrivate(int64_t* aN)
|
|||
char* ptr = buffer;
|
||||
end[carryOver] = '\0';
|
||||
// We are looking for lines like "Private_{Clean,Dirty}: 4 kB".
|
||||
while (ptr = strstr(ptr, "Private")) {
|
||||
while ((ptr = strstr(ptr, "Private"))) {
|
||||
if (ptr >= end) {
|
||||
break;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче