summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMathis Rosenhauer <rosenhauer@dkrz.de>2014-02-11 13:57:54 +0100
committerMathis Rosenhauer <rosenhauer@dkrz.de>2014-02-11 15:33:18 +0100
commit0524b741b38411253e0df6157fbde7665f1714d1 (patch)
tree2a3bb2da12bca259763fb414b1dbab4b76a2d22b /tests
parent7128dc5c8c51ef45cf532d9675b7e9b6224b6f5f (diff)
downloadlibaec-0524b741b38411253e0df6157fbde7665f1714d1.tar.gz
libaec-0524b741b38411253e0df6157fbde7665f1714d1.tar.bz2
libaec-0524b741b38411253e0df6157fbde7665f1714d1.zip
correct lenght calculation for SE
Diffstat (limited to 'tests')
-rw-r--r--tests/check_code_options.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/check_code_options.c b/tests/check_code_options.c
index dc6bebf..5259a46 100644
--- a/tests/check_code_options.c
+++ b/tests/check_code_options.c
@@ -138,9 +138,9 @@ int check_se(struct test_state *state)
state->out(tmp + size, 0, size);
state->out(tmp + 2 * size, 0, size);
state->out(tmp + 3 * size, 0, size);
- state->out(tmp + 4 * size, 0, size);
- state->out(tmp + 5 * size, 0, size);
- state->out(tmp + 6 * size, 0, size);
+ state->out(tmp + 4 * size, 1, size);
+ state->out(tmp + 5 * size, 1, size);
+ state->out(tmp + 6 * size, 1, size);
state->out(tmp + 7 * size, 1, size);
}