summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2021-07-31 01:20:43 +0200
committerHiltjo Posthuma <hiltjo@codemadness.org>2021-08-03 20:43:54 +0200
commit7199cd10a97e9d648b594cf6327f9ed7fa732527 (patch)
treeb19e050bc4b6db7fc668dbe863d0b777aa7bc018
parent93044ecd315dad94be56f866c67cf3102605f566 (diff)
code-style: use a newline before return in main()
-rw-r--r--sfeed_mbox.c1
-rw-r--r--sfeed_plain.c1
-rw-r--r--sfeed_twtxt.c1
3 files changed, 3 insertions, 0 deletions
diff --git a/sfeed_mbox.c b/sfeed_mbox.c
index d16b8d3..924b6d2 100644
--- a/sfeed_mbox.c
+++ b/sfeed_mbox.c
@@ -169,5 +169,6 @@ main(int argc, char *argv[])
fclose(fp);
}
}
+
return 0;
}
diff --git a/sfeed_plain.c b/sfeed_plain.c
index 28b36e6..df93a5a 100644
--- a/sfeed_plain.c
+++ b/sfeed_plain.c
@@ -80,5 +80,6 @@ main(int argc, char *argv[])
fclose(fp);
}
}
+
return 0;
}
diff --git a/sfeed_twtxt.c b/sfeed_twtxt.c
index 231ad1f..6107fc7 100644
--- a/sfeed_twtxt.c
+++ b/sfeed_twtxt.c
@@ -65,5 +65,6 @@ main(int argc, char *argv[])
fclose(fp);
}
}
+
return 0;
}