summaryrefslogtreecommitdiff
path: root/testsuite/ctlz.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/ctlz.c')
-rw-r--r--testsuite/ctlz.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/ctlz.c b/testsuite/ctlz.c
index 1fc0cf1..6bd91ea 100644
--- a/testsuite/ctlz.c
+++ b/testsuite/ctlz.c
@@ -37,7 +37,7 @@ int main(int argc, char ** argv) {
end = __rpcc();
cix_total += end - start - overhead;
- memset(b, 4096, 0);
+ memset(b, 0, 4096);
}
for (j = 0; j < ITERATIONS; j++) {
@@ -57,7 +57,7 @@ int main(int argc, char ** argv) {
end = __rpcc();
noncix_total += end - start - overhead;
- memset(c, 4096, 0);
+ memset(c, 0, 4096);
}
noncix_total /= ITERATIONS;