summaryrefslogtreecommitdiffstats
path: root/bar.c
diff options
context:
space:
mode:
Diffstat (limited to 'bar.c')
-rw-r--r--bar.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bar.c b/bar.c
index 33127f8..31734ac 100644
--- a/bar.c
+++ b/bar.c
@@ -58,7 +58,7 @@ static int bfs_bar_getsize(struct bfs_bar *bar) {
/** Async Signal Safe puts(). */
static int ass_puts(int fd, const char *str) {
size_t len = strlen(str);
- return safe_write_all(fd, str, len) == (ssize_t)len ? 0 : -1;
+ return xwrite(fd, str, len) == len ? 0 : -1;
}
/** Number of decimal digits needed for terminal sizes. */