This is never changed from STDOUT_FILENO, so just use that value
directly.
Signed-off-by: John Keeping <john@keeping.me.uk>
-static int htmlfd = STDOUT_FILENO;
-
char *fmt(const char *format, ...)
{
static char buf[8][1024];
char *fmt(const char *format, ...)
{
static char buf[8][1024];
void html_raw(const char *data, size_t size)
{
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");
}
die_errno("write error on html output");
}