diff options
author | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2002-03-24 19:23:47 +0000 |
---|---|---|
committer | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2002-03-24 19:23:47 +0000 |
commit | 75960283e292df4e37078a68fbb9eea9cc20a76c (patch) | |
tree | 827bd819d8cfad1140dd8469244a13b8a641e566 /src/liba52 | |
parent | 2946c66c6b4bf911d26196fe6c945180b86a9c67 (diff) | |
download | xine-lib-75960283e292df4e37078a68fbb9eea9cc20a76c.tar.gz xine-lib-75960283e292df4e37078a68fbb9eea9cc20a76c.tar.bz2 |
Fixed a few warning messages.
CVS patchset: 1628
CVS date: 2002/03/24 19:23:47
Diffstat (limited to 'src/liba52')
-rw-r--r-- | src/liba52/parse.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/liba52/parse.c b/src/liba52/parse.c index 3e5f99256..e2be25d12 100644 --- a/src/liba52/parse.c +++ b/src/liba52/parse.c @@ -22,6 +22,7 @@ #include "config.h" #include <inttypes.h> +#include <stdio.h> /* For printf */ #include <stdlib.h> #include <string.h> @@ -48,7 +49,7 @@ sample_t * a52_init (uint32_t mm_accel, sample_t **samples_base) imdct_init (mm_accel); samples = xine_xmalloc_aligned (16, 256 * 12 * sizeof (sample_t), - samples_base); + (void**) samples_base); if (samples == NULL) { printf ("liba52: samples malloc failed!\n"); |