mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 23:05:04 +01:00
use C style cast in C code, rather than C++ constructor
This commit is contained in:
parent
48a109e8c8
commit
24f1a65d5f
1 changed files with 2 additions and 2 deletions
|
|
@ -304,14 +304,14 @@ static __inline__ void MAPPING_INSERT(size_t _r, int *_fl, int *_sl)
|
|||
|
||||
static __inline__ bhdr_t *FIND_SUITABLE_BLOCK(tlsf_t * _tlsf, int *_fl, int *_sl)
|
||||
{
|
||||
u32_t _tmp = _tlsf->sl_bitmap[*_fl] & (~u32_t(0) << *_sl);
|
||||
u32_t _tmp = _tlsf->sl_bitmap[*_fl] & (~((u32_t)0) << *_sl);
|
||||
bhdr_t *_b = NULL;
|
||||
|
||||
if (_tmp) {
|
||||
*_sl = ls_bit(_tmp);
|
||||
_b = _tlsf->matrix[*_fl][*_sl];
|
||||
} else {
|
||||
*_fl = ls_bit(_tlsf->fl_bitmap & (~u32_t(0) << (*_fl + 1)));
|
||||
*_fl = ls_bit(_tlsf->fl_bitmap & (~((u32_t)0) << (*_fl + 1)));
|
||||
if (*_fl > 0) { /* likely */
|
||||
*_sl = ls_bit(_tlsf->sl_bitmap[*_fl]);
|
||||
_b = _tlsf->matrix[*_fl][*_sl];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue