diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2010-07-21 19:32:07 +0100 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2010-07-21 19:32:07 +0100 |
commit | 5444a0ac73c01b7dabfce3bb81ac6094c44fb5ab (patch) | |
tree | ed5d13fb1a6691a6ca8b9d2e2d7dbaa5f89701ba | |
parent | 99995e9829efc897518c2cf3265dbcac7149c90d (diff) | |
download | xine-lib-5444a0ac73c01b7dabfce3bb81ac6094c44fb5ab.tar.gz xine-lib-5444a0ac73c01b7dabfce3bb81ac6094c44fb5ab.tar.bz2 |
0 → NULL for consistency.
-rw-r--r-- | src/post/audio/upmix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/post/audio/upmix.c b/src/post/audio/upmix.c index 76cf8f1b2..f4ea9544a 100644 --- a/src/post/audio/upmix.c +++ b/src/post/audio/upmix.c @@ -396,7 +396,7 @@ static post_plugin_t *upmix_open_plugin(post_class_t *class_gen, int inputs, _x_post_init(&this->post, 1, 0); - pthread_mutex_init(&this->lock, 0); + pthread_mutex_init(&this->lock, NULL); this->params.cut_off_freq = 100; |