diff options
author | Nathan Moinvaziri <nathan@nathanm.com> | 2020-02-09 19:59:01 -0800 |
---|---|---|
committer | Hans Kristian Rosbach <hk-github@circlestorm.org> | 2020-05-01 00:21:18 +0200 |
commit | e09d131b5abbccf97532afb17c3da92cd0fc6f00 (patch) | |
tree | b9dd1cb744c931c743080ef9f2b20dfc02f489d1 /deflate_medium.c | |
parent | 343596fc98a0d7a6283dbe5d25abefca18439184 (diff) |
Standardize fill_window implementations and abstract out slide_hash_neon for ARM.
Diffstat (limited to 'deflate_medium.c')
-rw-r--r-- | deflate_medium.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/deflate_medium.c b/deflate_medium.c index 31f8372..4e5d094 100644 --- a/deflate_medium.c +++ b/deflate_medium.c @@ -207,7 +207,7 @@ ZLIB_INTERNAL block_state deflate_medium(deflate_state *s, int flush) { * string following the next current_match. */ if (s->lookahead < MIN_LOOKAHEAD) { - functable.fill_window(s); + fill_window(s); if (s->lookahead < MIN_LOOKAHEAD && flush == Z_NO_FLUSH) { return need_more; } |