aboutsummaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorMikhail Romanko <me@blankhex.com>2024-04-14 22:38:00 +0300
committerMikhail Romanko <me@blankhex.com>2024-04-14 22:38:00 +0300
commitec499b6cfc3fe196757d4467ca044b5915198d45 (patch)
tree951107eb6da31371bacdd779d96bfd598c8a9873 /main.c
parenta645a201d85c37c81b11432acc73f48c9068846a (diff)
downloadbhlib-old-ec499b6cfc3fe196757d4467ca044b5915198d45.tar.gz
Remove whitespace
Diffstat (limited to 'main.c')
-rw-r--r--main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.c b/main.c
index e9880c5..fac0f2e 100644
--- a/main.c
+++ b/main.c
@@ -51,7 +51,7 @@ int factor(int x)
{
if (x < 2)
return 1;
-
+
return factor(x - 1) + factor(x - 2);
}