summaryrefslogtreecommitdiff
path: root/src/post
diff options
context:
space:
mode:
authorDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2008-04-19 01:54:11 +0200
committerDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2008-04-19 01:54:11 +0200
commit95973431372272b749762591cd4b82fe7e587a84 (patch)
treeca727d5a952c9b00c717274bc632c1690e7bb98c /src/post
parentdd702a3abc16986a2bbc3d3429fce1f621f94c0d (diff)
downloadxine-lib-95973431372272b749762591cd4b82fe7e587a84.tar.gz
xine-lib-95973431372272b749762591cd4b82fe7e587a84.tar.bz2
Replace xine_xcalloc usage with calloc, for the revisions transplanted from 1.2 series.
Diffstat (limited to 'src/post')
-rw-r--r--src/post/mosaico/mosaico.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/post/mosaico/mosaico.c b/src/post/mosaico/mosaico.c
index 05c1f5f19..40f0ffb4c 100644
--- a/src/post/mosaico/mosaico.c
+++ b/src/post/mosaico/mosaico.c
@@ -158,7 +158,7 @@ static post_plugin_t *mosaico_open_plugin(post_class_t *class_gen, int inputs,
_x_post_init(&this->post, 0, inputs);
- this->pip = (mosaico_pip_t *)xine_xcalloc((inputs - 1), sizeof(mosaico_pip_t));
+ this->pip = (mosaico_pip_t *)calloc((inputs - 1), sizeof(mosaico_pip_t));
this->pip_count = inputs - 1;
pthread_cond_init(&this->vpts_limit_changed, NULL);