summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--if.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/if.c b/if.c
index ce09569..6dfbdc8 100644
--- a/if.c
+++ b/if.c
@@ -8,7 +8,7 @@ if (x < y) {
printf("x is less than y\n");
} else if (x > y) {
printf("x is greater than y\n");
-} else if (x == y) {
+} else {
printf("x is equal to y\n");
}
}