aboutsummaryrefslogtreecommitdiffstats
path: root/test/c/fannkuch.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/c/fannkuch.c')
-rw-r--r--test/c/fannkuch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/c/fannkuch.c b/test/c/fannkuch.c
index ddaa7309..6fb7912f 100644
--- a/test/c/fannkuch.c
+++ b/test/c/fannkuch.c
@@ -102,7 +102,7 @@ fannkuch( int n )
int
main( int argc, char* argv[] )
{
- int n = (argc>1) ? atoi(argv[1]) : 8;
+ int n = (argc>1) ? atoi(argv[1]) : 6;
printf("Pfannkuchen(%d) = %ld\n", n, fannkuch(n));
return 0;