diff options
author | John Keeping <john@keeping.me.uk> | 2014-01-12 17:13:48 +0000 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2014-01-12 20:15:55 +0100 |
commit | fd31aa693077d0eea1b14a7f44ffe29503e2ad59 (patch) | |
tree | 52a07041e444885764db7001ef34fa44b42aa2ea /html.c | |
parent | 1b1974c45e5e23e5527aa43c4d9ece423a13dfdc (diff) |
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.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -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"); } |