summaryrefslogtreecommitdiff
path: root/stagit-index.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-index.c
parent467dfeb8f4bf2dd1ddb69e5c9592147acb425aab (diff)
favicon: png to ico
Diffstat (limited to 'stagit-index.c')
-rw-r--r--stagit-index.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stagit-index.c b/stagit-index.c
index 2b243ec..3e895c5 100644
--- a/stagit-index.c
+++ b/stagit-index.c
@@ -68,7 +68,7 @@ writeheader(FILE *fp)
"<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n"
"<title>", 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=\"stylesheet\" type=\"text/css\" href=\"%sstyle.css\" />\n", relpath);
fputs("</head>\n<body>\n", fp);
fprintf(fp, "<table>\n<tr><td><img src=\"%slogo.png\" alt=\"\" width=\"32\" height=\"32\" /></td>\n"