summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-11-10 22:24:48 +1300
committerTom Ryder <tom@sanctum.geek.nz>2018-11-10 22:24:48 +1300
commitef9e4813f075404acfd5812751c99aa3fd8cb807 (patch)
tree2b76ba706fba2d3db69fd395d9e0ade00817275f
parentUse consistent parens style (diff)
downloadtexad-ef9e4813f075404acfd5812751c99aa3fd8cb807.tar.gz
texad-ef9e4813f075404acfd5812751c99aa3fd8cb807.zip
Move final return of parse() to end of func
Keeps the strict compiler happy.
-rw-r--r--texad.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/texad.c b/texad.c
index 4b79254..1fbf733 100644
--- a/texad.c
+++ b/texad.c
@@ -214,6 +214,7 @@ int loop(struct world *w)
}
else {
puts("");
- return 0;
}
+
+ return 0;
}