Changeset 71917 in vbox
- Timestamp:
- Apr 19, 2018 10:09:31 AM (7 years ago)
- Location:
- trunk/src/VBox/Runtime/common
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/asm/asm-fake.cpp
r71916 r71917 475 475 uint32_t iBit; 476 476 for (iBit = 0; iBit < 64; iBit++) 477 if (u 32& RT_BIT_64(iBit))477 if (u64 & RT_BIT_64(iBit)) 478 478 return iBit + 1; 479 479 return 0; -
trunk/src/VBox/Runtime/common/string/memrchr.cpp
r71916 r71917 48 48 while (cb) 49 49 { 50 if (*pbCur == c b)50 if (*pbCur == ch) 51 51 return (void *)pbCur; 52 52 pbCur--;
Note:
See TracChangeset
for help on using the changeset viewer.