From: Andre Noll Date: Thu, 8 Dec 2016 22:59:26 +0000 (+0100) Subject: wmadec: Remove a pointless cast. X-Git-Tag: v0.5.7~11^2~1 X-Git-Url: http://git.tuebingen.mpg.de/?a=commitdiff_plain;h=d565f0e8aedfb8efab7028de03ce35eb141df8d1;hp=c6dff555d7ed916d47b5739923613a265042c1a0;p=paraslash.git wmadec: Remove a pointless cast. The address of "in" is already of type char **. --- diff --git a/wmadec_filter.c b/wmadec_filter.c index 41dd51f9..cb366057 100644 --- a/wmadec_filter.c +++ b/wmadec_filter.c @@ -1212,7 +1212,7 @@ next_buffer: if (ret == 0) return 0; btr_merge(btrn, fn->min_iqs); - len = btr_next_buffer(btrn, (char **)&in); + len = btr_next_buffer(btrn, &in); ret = -E_WMADEC_EOF; if (len < fn->min_iqs) goto err;