diff options
Diffstat (limited to 'libbb/write.c')
-rw-r--r-- | libbb/write.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libbb/write.c b/libbb/write.c index 37f4617..116e4d1 100644 --- a/libbb/write.c +++ b/libbb/write.c @@ -10,11 +10,10 @@ #include "libbb.h" /* Open file and write string str to it, close file. - * Die on any open or write-error. */ + * Die on any open or write error. */ void FAST_FUNC xopen_xwrite_close(const char* file, const char* str) { int fd = xopen(file, O_WRONLY); - - xwrite(fd, str, strlen(str)); + xwrite_str(fd, str); close(fd); } |