Ignore:
Timestamp:
11/17/11 18:20:12 (12 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

fixed some gcc -Wextra warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libroardsp/filter_responsecurve.c

    r5269 r5270  
    2929 struct roardsp_responsecurve * self = roar_mm_malloc(sizeof(struct roardsp_responsecurve)); 
    3030 
     31 (void)stream, (void)id; 
     32 
    3133 ROAR_DBG("roardsp_responsecurve_init(filter=%p, stream=%p, id=%i) = ?", filter, stream, id); 
    3234 
     
    5052 
    5153static double __func_pass(double i, double N) { 
     54 (void)N; 
    5255 return i; 
    5356} 
     
    7073 
    7174static double __func_cos(double i, double N) { 
     75 (void)N; 
    7276 return 0.5 - cos(i * M_PI)/2.; 
    7377} 
    7478 
    7579static double __func_icos(double i, double N) { 
     80 (void)N; 
    7681 return 2.*i - 0.5 + cos(i * M_PI)/2.; 
    7782} 
Note: See TracChangeset for help on using the changeset viewer.