Fix style again

bug/bundler_fix
jvazquez-r7 2014-10-31 12:51:43 -05:00
parent 203af90a44
commit 6154b7d55f
1 changed files with 3 additions and 3 deletions

View File

@ -160,10 +160,10 @@ BOOL find_and_replace_member(PMYWORD pdwStructure, MYWORD dwCurrentValue, MYWORD
// dwMask out the reference count. // dwMask out the reference count.
dwCurrentValue &= dwMask; dwCurrentValue &= dwMask;
// Scan the structure for any occurrence of CurrentValue. // Scan the structure for any occurrence of dwCurrentValue.
for (dwIndex = 0; dwIndex < dwMaxSize; dwIndex++) for (dwIndex = 0; dwIndex < dwMaxSize; dwIndex++)
{ {
if ((pdwStructure[dwIndex] & dwMask) == dwCurrentValue) if ((pdwStructure[dwIndex] & dwMask) == dwCurrentValue)
{ {
// And finally, replace it with NewValue. // And finally, replace it with NewValue.
pdwStructure[dwIndex] = dwNewValue; pdwStructure[dwIndex] = dwNewValue;