diff options
| author | Carson Fleming <cflems@cflems.net> | 2026-07-18 13:18:45 -0700 |
|---|---|---|
| committer | Carson Fleming <cflems@cflems.net> | 2026-07-18 13:18:45 -0700 |
| commit | 385419f95c6b9c35a7c2a6168f82f7aa4a44e22b (patch) | |
| tree | 981d2e69f6e6d1c558253db6cef4083e98467bc1 /test | |
| parent | b43aebd9d3c2e072ee2acc50d4381dcb0f01ec98 (diff) | |
| download | ccc-385419f95c6b9c35a7c2a6168f82f7aa4a44e22b.tar.gz | |
fix scoping big
Diffstat (limited to 'test')
| -rw-r--r-- | test/fibonacci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/fibonacci.c b/test/fibonacci.c index 39a32be..a07c111 100644 --- a/test/fibonacci.c +++ b/test/fibonacci.c @@ -1,6 +1,6 @@ int fib (int n) { if (n) return n * fib(n-1); - return 1; + else return 1; } int main (int argc, char** argv) { |
