aboutsummaryrefslogtreecommitdiffstats
path: root/test/c/qsort.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/c/qsort.c')
-rw-r--r--test/c/qsort.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/c/qsort.c b/test/c/qsort.c
index 66eef68d..a9d5757a 100644
--- a/test/c/qsort.c
+++ b/test/c/qsort.c
@@ -34,7 +34,7 @@ int main(int argc, char ** argv)
int n, i, j;
int * a, * b;
- if (argc >= 2) n = atoi(argv[1]); else n = 100000;
+ if (argc >= 2) n = atoi(argv[1]); else n = 10000;
a = malloc(n * sizeof(int));
b = malloc(n * sizeof(int));
for (j = 0; j < NITER; j++) {