]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - imdct.c
string: Rename para_calloc() -> zalloc().
[paraslash.git] / imdct.c
diff --git a/imdct.c b/imdct.c
index 518d4782e8f33de5fd3c9d8ff1ce61cf25ead8e1..d49ae852a82167524674f708bf1fb21250be2331 100644 (file)
--- a/imdct.c
+++ b/imdct.c
@@ -366,7 +366,7 @@ int imdct_init(int nbits, struct mdct_context **result)
        double alpha;
        struct mdct_context *s;
 
-       s = para_calloc(sizeof(*s));
+       s = zalloc(sizeof(*s));
        n = 1 << nbits;
        s->nbits = nbits;
        s->n = n;