diff options
Diffstat (limited to 'html.c')
-rw-r--r-- | html.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -63,12 +63,13 @@ char *fmt(const char *format, ...) | |||
63 | 63 | ||
64 | void html_raw(const char *data, size_t size) | 64 | void html_raw(const char *data, size_t size) |
65 | { | 65 | { |
66 | write(htmlfd, data, size); | 66 | if (write(htmlfd, data, size) != size) |
67 | fprintf(stderr, "[html.c] html output truncated.\n"); | ||
67 | } | 68 | } |
68 | 69 | ||
69 | void html(const char *txt) | 70 | void html(const char *txt) |
70 | { | 71 | { |
71 | write(htmlfd, txt, strlen(txt)); | 72 | html_raw(txt, strlen(txt)); |
72 | } | 73 | } |
73 | 74 | ||
74 | void htmlf(const char *format, ...) | 75 | void htmlf(const char *format, ...) |