From f47abf90ac4b553e8a85fa5e0875ee3595daab6b Mon Sep 17 00:00:00 2001 From: Jeff Epler Date: Wed, 12 Feb 2020 09:49:23 -0600 Subject: [PATCH] filter_convolve: fix build error My earlier change introduced a build error. I'm not sure why I didn't find this before making the pull request. --- code/filter.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/code/filter.c b/code/filter.c index 15c46fd..fba03f9 100644 --- a/code/filter.c +++ b/code/filter.c @@ -69,15 +69,10 @@ mp_obj_t filter_convolve(size_t n_args, const mp_obj_t *pos_args, mp_map_t *kw_a int top_n = MIN(len_c, len_a - k); int bot_n = MAX(-k, 0); for(int n=bot_n; narray->items, a->array->typecode, idx_a); mp_float_t ci = ndarray_get_float_value(c->array->items, c->array->typecode, idx_c); - } accum += ai * ci; } *outptr++ = accum;