summaryrefslogtreecommitdiff
path: root/stagit.c
diff options
context:
space:
mode:
authorOscar Benedito <oscar@oscarbenedito.com>2020-06-20 02:16:34 +0200
committerOscar Benedito <oscar@oscarbenedito.com>2020-06-22 22:06:27 +0200
commit3c1a822f60e08f2ad2f9920984b5d7f948367101 (patch)
tree16dd15a63f09f89be70b7bf3b71b595be4359f33 /stagit.c
parent467dfeb8f4bf2dd1ddb69e5c9592147acb425aab (diff)
favicon: png to ico
Diffstat (limited to 'stagit.c')
-rw-r--r--stagit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stagit.c b/stagit.c
index 7ff036f..6891bd4 100644
--- a/stagit.c
+++ b/stagit.c
@@ -352,7 +352,7 @@ writeheader(FILE *fp, const char *title)
if (description[0])
fputs(" - ", fp);
xmlencode(fp, description, strlen(description));
- fprintf(fp, "</title>\n<link rel=\"icon\" type=\"image/png\" href=\"%sfavicon.png\" />\n", relpath);
+ fprintf(fp, "</title>\n<link rel=\"icon\" type=\"image/png\" href=\"%sfavicon.ico\" />\n", relpath);
fprintf(fp, "<link rel=\"alternate\" type=\"application/atom+xml\" title=\"%s Atom Feed\" href=\"%satom.xml\" />\n",
name, relpath);
fprintf(fp, "<link rel=\"stylesheet\" type=\"text/css\" href=\"%sstyle.css\" />\n", relpath);