Changeset 177

Show
Ignore:
Timestamp:
03/11/05 08:47:31 (3 years ago)
Author:
conrad
Message:

fix compile warning in remix_squaretone.c

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • libremix/libremix/src/libremix/remix_squaretone.c

    r168 r177  
    9696{ 
    9797  RemixSquareTone * squaretone = (RemixSquareTone *)base; 
    98   RemixSquareTone * new_squaretone = 
     98  RemixBase * new_squaretone = 
    9999    remix_squaretone_new (env, squaretone->frequency); 
    100   remix_squaretone_optimise (env, new_squaretone); 
    101   return (RemixBase *)new_squaretone; 
     100  remix_squaretone_optimise (env, (RemixSquareTone *)new_squaretone); 
     101  return new_squaretone; 
    102102} 
    103103