Changeset 1492:1e1b7fabd0b6 in roaraudio


Ignore:
Timestamp:
03/31/09 19:38:18 (15 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

corrected wronge cast from int to void*

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libroardsp/filter_clip.c

    r1141 r1492  
    4747 if ( cmd == ROARDSP_FCTL_LIMIT ) { 
    4848  old = (ROAR_INSTINT)filter->inst; 
    49   filter->inst = (void*)labs(*(int32_t*)data); 
     49  filter->inst = (void*)(ROAR_INSTINT)labs(*(int32_t*)data); 
    5050  *(int32_t*)data = old; 
    5151 } else { 
Note: See TracChangeset for help on using the changeset viewer.