diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2016-01-06 19:59:55 +0100 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2016-01-06 20:06:06 +0100 |
commit | db02820a175c43cf1c225928bc09dd3fd5d93d71 (patch) | |
tree | 8cad3c8acaf2ab2a9bca810f4deca95c6f6caf30 /stagit.c | |
parent | 73f259f2557698a83c9fb7e11938feb775740741 (diff) |
extra whitespace
Diffstat (limited to 'stagit.c')
-rw-r--r-- | stagit.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -270,7 +270,7 @@ writeheader(FILE *fp) fprintf(fp, " | <a href=\"%sfile/README.html\">README</a>", relpath); if (haslicense) fprintf(fp, " | <a href=\"%sfile/LICENSE.html\">LICENSE</a>", relpath); - fputs("</td></tr></table>\n<hr/><div id=\"content\">\n", fp); + fputs("</td></tr></table>\n<hr/>\n<div id=\"content\">\n", fp); return 0; } @@ -278,7 +278,7 @@ writeheader(FILE *fp) int writefooter(FILE *fp) { - return !fputs("</div></body>\n</html>", fp); + return !fputs("</div>\n</body>\n</html>\n", fp); } void |