On Sat, Dec 31, 2005 at 03:09:02PM +0100, Fabio wrote:
> Again i've got some problem compiling speex library from CVS for pocketpc
> This time the compiler complains about every cast like this:
>
> return (spx_float_t) {0,0};
Try adding
spx_float_t zero = {0,0};
at the head of the function and then replacing the offending line with
return zero;
HTH,
-r