git-query
git data extraction tool using c and libgit2
git clone https://9o.is/git/git-query.git
commit 82dd0368e30298fcd29c98b57bef99adb2daef10 parent b7522332b16f71876b8ada42c8252d97499ab483 Author: Hiltjo Posthuma <hiltjo@codemadness.org> Date: Sun, 12 Mar 2017 19:51:13 +0100 atom.xml: add newline before EOF Diffstat:
| M | stagit.c | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/stagit.c b/stagit.c @@ -696,7 +696,7 @@ writeatom(FILE *fp) } git_revwalk_free(w); - fputs("</feed>", fp); + fputs("</feed>\n", fp); return 0; }