nitpick: use <img />, not <img> - gopherproxy-c - Gopher HTTP proxy in C (CGI) | |
git clone git://git.codemadness.org/gopherproxy-c | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit 7b02f8a438e1b15796383f446d13f2c8c92d8501 | |
parent 0427e35fbc8ab864a4d8507e3f174165633529f1 | |
Author: Hiltjo Posthuma <[email protected]> | |
Date: Wed, 9 Jul 2025 19:38:19 +0200 | |
nitpick: use <img />, not <img> | |
Diffstat: | |
M gopherproxy.c | 2 +- | |
1 file changed, 1 insertion(+), 1 deletion(-) | |
--- | |
diff --git a/gopherproxy.c b/gopherproxy.c | |
@@ -396,7 +396,7 @@ servedir(const char *server, const char *port, const char *… | |
fputs("<img src=\"?q=", stdout); | |
encodeparam(uri); | |
- fputs("\" width=\"400\">", stdout); | |
+ fputs("\" width=\"400\" />", stdout); | |
fputs("</a>", stdout); | |
break; |