Changeset 21113 in vbox for trunk/src/libs/xpcom18a4/xpcom/io/nsFastLoadService.cpp
- Timestamp:
- Jul 1, 2009 11:48:47 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/xpcom18a4/xpcom/io/nsFastLoadService.cpp
r1 r21113 395 395 return rv; 396 396 397 #ifndef VBOX 397 398 mChecksumTable.Put(&key, NS_INT32_TO_PTR(checksum)); 399 #else /* VBOX */ 400 mChecksumTable.Put(&key, (void *)checksum); 401 #endif /* VBOX */ 398 402 *aChecksum = checksum; 399 403 return NS_OK; … … 418 422 419 423 nsCStringKey key(path); 424 #ifndef VBOX 420 425 mChecksumTable.Put(&key, NS_INT32_TO_PTR(checksum)); 426 #else /* VBOX */ 427 mChecksumTable.Put(&key, (void *)checksum); 428 #endif /* VBOX */ 421 429 return NS_OK; 422 430 }
Note:
See TracChangeset
for help on using the changeset viewer.