Osamu Shigematsu schrieb am Son, 21 Mai 2000:
> Hello, all.
> 
> I'm now trying to make LAME 3.83 on Macintosh with CodeWarrior.
> 
> My compiler says, that
> 
> Error   : type mismatch
> 'int *' and
> 'int'
> quantize-pvt.c line 1088   if (scalefac->s[sfb]<0)  /* scfsi! */
> 
> So I fix 
> 
>     if (*scalefac->s[sfb]<0)
> 
> then, it become OK.
> 
> I don't know why. Could someone tell me why?
> 
> Thanks.
>
> -- 
> Osamu Shigematsu
> mailto:[EMAIL PROTECTED]

Hi, the correct fix looks like this:

     if (scalefac->l[sfb]<0)


Robert 
-- 

   e-mail: [EMAIL PROTECTED]
   
 homepage: http://linux.unixcity.de/catwalk/index.html
--
MP3 ENCODER mailing list ( http://geek.rcc.se/mp3encoder/ )

Reply via email to