aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCody Logan <cody@lokken.dev>2023-11-28 16:04:44 -0800
committerCody Logan <cody@lokken.dev>2023-11-28 16:04:44 -0800
commit9253b30c0dd8180366ee884c6404b23772c57997 (patch)
tree954a8f9ab951b86aff5dd9cf4b193bff752f81c6
parent156ba5a9e438f2ce1b04a4e0145e4ac90419bfbd (diff)
downloadconvert-markdown-9253b30c0dd8180366ee884c6404b23772c57997.tar.gz
convert-markdown-9253b30c0dd8180366ee884c6404b23772c57997.zip
Explicit return value
-rw-r--r--convert-markdown.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/convert-markdown.c b/convert-markdown.c
index 1d1414c..15e0be1 100644
--- a/convert-markdown.c
+++ b/convert-markdown.c
@@ -52,4 +52,5 @@ int main(void) {
errx(1, "lowdown_file");
fwrite(buf, 1, bufsz, stdout);
free(buf);
+ return 0;
}