about summary refs log tree commit diff
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
parenttests: add Valgrind support (diff)
downloadcgit-magenta-fd31aa693077d0eea1b14a7f44ffe29503e2ad59.tar.xz
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"); }