diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2017-03-12 19:51:13 +0100 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2017-03-12 21:22:53 +0100 |
commit | 543107cc36306a3539d21a8441e75276310a45db (patch) | |
tree | 0782217dbaaae82c524c257c93bf0fb1336cfa9d | |
parent | 0f05e4b4f0f7dad20b26d60aa350b90fb47f1eb8 (diff) |
atom.xml: add newline before EOF
-rw-r--r-- | stagit.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -696,7 +696,7 @@ writeatom(FILE *fp) } git_revwalk_free(w); - fputs("</feed>", fp); + fputs("</feed>\n", fp); return 0; } |