aboutsummaryrefslogtreecommitdiff
path: root/html.c
diff options
context:
space:
mode:
authorJohn Keeping <john@keeping.me.uk>2014-01-12 17:13:48 +0000
committerJason A. Donenfeld <Jason@zx2c4.com>2014-01-12 20:15:55 +0100
commitfd31aa693077d0eea1b14a7f44ffe29503e2ad59 (patch)
tree52a07041e444885764db7001ef34fa44b42aa2ea /html.c
parent1b1974c45e5e23e5527aa43c4d9ece423a13dfdc (diff)
downloadcgit-fd31aa693077d0eea1b14a7f44ffe29503e2ad59.tar.gz
cgit-fd31aa693077d0eea1b14a7f44ffe29503e2ad59.tar.bz2
html: remove redundant htmlfd variable
This is never changed from STDOUT_FILENO, so just use that value directly. Signed-off-by: John Keeping <john@keeping.me.uk>
Diffstat (limited to 'html.c')
-rw-r--r--html.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/html.c b/html.c
index 903d4b7..f0ee2d6 100644
--- a/html.c
+++ b/html.c
@@ -41,8 +41,6 @@ static const char* url_escape_table[256] = {
"%fe", "%ff"
};
-static int htmlfd = STDOUT_FILENO;
-
char *fmt(const char *format, ...)
{
static char buf[8][1024];
@@ -77,7 +75,7 @@ char *fmtalloc(const char *format, ...)
void html_raw(const char *data, size_t size)
{
- if (write(htmlfd, data, size) != size)
+ if (write(STDOUT_FILENO, data, size) != size)
die_errno("write error on html output");
}