Changeset 1307 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Mar 7, 2007 4:53:15 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/path.cpp
r1 r1307 283 283 284 284 int iDiff = 0; 285 PRTUNICP puszTmpPath1 = puszPath1; 286 PRTUNICP puszTmpPath2 = puszPath2; 285 287 for (;;) 286 288 { 287 register RTUNICP uc1 = *pusz Path1;288 register RTUNICP uc2 = *pusz Path2;289 register RTUNICP uc1 = *puszTmpPath1; 290 register RTUNICP uc2 = *puszTmpPath2; 289 291 if (uc1 != uc2) 290 292 { … … 307 309 if (!uc1) 308 310 break; 309 pusz Path1++;310 pusz Path2++;311 puszTmpPath1++; 312 puszTmpPath2++; 311 313 312 314 }
Note:
See TracChangeset
for help on using the changeset viewer.