diff options
Diffstat (limited to 'st.c')
-rw-r--r-- | st.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -560,7 +560,8 @@ static int frclen = 0; | |||
560 | ssize_t | 560 | ssize_t |
561 | xwrite(int fd, const char *s, size_t len) | 561 | xwrite(int fd, const char *s, size_t len) |
562 | { | 562 | { |
563 | size_t aux = len, r; | 563 | size_t aux = len; |
564 | ssize_t r; | ||
564 | 565 | ||
565 | while (len > 0) { | 566 | while (len > 0) { |
566 | r = write(fd, s, len); | 567 | r = write(fd, s, len); |