summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorW. Felix Handte <w@felixhandte.com>2018-03-12 22:13:24 (GMT)
committerW. Felix Handte <w@felixhandte.com>2018-03-12 22:34:41 (GMT)
commitf9fef255a12470b7beeaa8635b65fc837d835c84 (patch)
treec710a1b534414e24276e2c9f3c97ba56ac85014b /tests
parent1df5d911aa23e645b873164382a40186ed704bac (diff)
downloadlz4-f9fef255a12470b7beeaa8635b65fc837d835c84.zip
lz4-f9fef255a12470b7beeaa8635b65fc837d835c84.tar.gz
lz4-f9fef255a12470b7beeaa8635b65fc837d835c84.tar.bz2
Renames and Comment Fixes
Diffstat (limited to 'tests')
-rw-r--r--tests/framebench.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/framebench.c b/tests/framebench.c
index a7a270b..fb4f38c 100644
--- a/tests/framebench.c
+++ b/tests/framebench.c
@@ -120,7 +120,7 @@ size_t compress_extState(bench_params_t *p) {
char *oend = obuf + osize;
size_t oused;
- oused = LZ4_compress_fast_safeExtState(ctx, ibuf + ((iter * 2654435761U) % num_ibuf) * isize, obuf, isize, oend - obuf, 0);
+ oused = LZ4_compress_fast_extState_noReset(ctx, ibuf + ((iter * 2654435761U) % num_ibuf) * isize, obuf, isize, oend - obuf, 0);
obuf += oused;
return obuf - p->obuf;