diff options
author | Galin Simeonov <gts@volconst.com> | 2021-09-27 11:39:11 +0300 |
---|---|---|
committer | Galin Simeonov <gts@volconst.com> | 2021-09-27 11:39:11 +0300 |
commit | 787f4e7d956814d2404d40d086c077c9dfba4427 (patch) | |
tree | dd7397727fabcfaf4caa3cff3a37b6613e25ff39 | |
parent | 567d80acbd99a5b8cbaa6d1fccd36837631f9718 (diff) | |
download | volgit-787f4e7d956814d2404d40d086c077c9dfba4427.tar.gz |
space between [DIFF] and commit id was underlined - now it is not
-rw-r--r-- | git_part.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -57,7 +57,7 @@ void print_headers_and_commit_message(FILE *where,git_commit *current_commit,con const git_signature *who_commited; fprintf(where,"<div class=\"commit_header commit_commit_header\">COMMIT: %s",git_oid_tostr_s(current)); if(has_diff) - fprintf(where,"<a href=\"diffs/%s.html\"> [DIFF]</a></div>\n",git_oid_tostr_s(current)); + fprintf(where," <a href=\"diffs/%s.html\">[DIFF]</a></div>\n",git_oid_tostr_s(current)); else fprintf(where,"</div>\n"); |