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>
This commit is contained in:
John Keeping 2014-01-12 17:13:48 +00:00 提交者 Jason A. Donenfeld
父節點 1b1974c45e
當前提交 fd31aa6930

4
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");
}