Changes between Version 1 and Version 2 of Ticket #26446, comment 4
- Timestamp:
- Aug 9, 2013, 5:43:26 AM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #26446, comment 4
v1 v2 3 3 Anywhere it said "invalid conversion from volatile int32_t* to int32_t*", I cast the parameter as int32_t*, like so: 4 4 {{{ 5 OSAtomicIncrement32Barrier( (int32_t*) & whateverTheArgWas);5 OSAtomicIncrement32Barrier( (int32_t*) &mInUseFlag ); 6 6 }}} 7 7