summaryrefslogtreecommitdiff
path: root/test/c/fib.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/c/fib.c')
-rw-r--r--test/c/fib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/c/fib.c b/test/c/fib.c
index 763fee8..a905202 100644
--- a/test/c/fib.c
+++ b/test/c/fib.c
@@ -12,7 +12,7 @@ int fib(int n)
int main(int argc, char ** argv)
{
int n, r;
- if (argc >= 2) n = atoi(argv[1]); else n = 30;
+ if (argc >= 2) n = atoi(argv[1]); else n = 36;
r = fib(n);
printf("fib(%d) = %d\n", n, r);
return 0;