From 0b311293891e44b8cb7c0a1f50f456ecd2e5d0d8 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Thu, 28 Feb 2013 21:32:02 +0100 Subject: lls: Do not return from void functions --- libavutil/lls.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libavutil/lls.c') diff --git a/libavutil/lls.c b/libavutil/lls.c index 464be9abd0..bbcab6cf9f 100644 --- a/libavutil/lls.c +++ b/libavutil/lls.c @@ -120,15 +120,15 @@ double avpriv_evaluate_lls(LLSModel *m, double *param, int order) #if FF_API_LLS_PRIVATE void av_init_lls(LLSModel *m, int indep_count) { - return avpriv_init_lls(m, indep_count); + avpriv_init_lls(m, indep_count); } void av_update_lls(LLSModel *m, double *param, double decay) { - return avpriv_update_lls(m, param, decay); + avpriv_update_lls(m, param, decay); } void av_solve_lls(LLSModel *m, double threshold, int min_order) { - return avpriv_solve_lls(m, threshold, min_order); + avpriv_solve_lls(m, threshold, min_order); } double av_evaluate_lls(LLSModel *m, double *param, int order) { -- cgit v1.2.3