diff options
author | Denton Liu <liu.denton@gmail.com> | 2020-03-28 03:57:34 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-03-29 03:06:51 +0200 |
commit | 7cd54d37dcde2d8fa62a5c7a562568dd6a5e77fa (patch) | |
tree | 5d45538615c2787a7554f9a03cadba2ecfb57838 /wrapper.c | |
parent | xread, xwrite: limit size of IO to 8MB (diff) | |
download | git-7cd54d37dcde2d8fa62a5c7a562568dd6a5e77fa.tar.xz git-7cd54d37dcde2d8fa62a5c7a562568dd6a5e77fa.zip |
wrapper: indent with tabs
The codebase uses tabs for indentation. Convert an erroneous space
indent into a tab indent.
Signed-off-by: Denton Liu <liu.denton@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'wrapper.c')
-rw-r--r-- | wrapper.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -147,7 +147,7 @@ ssize_t xread(int fd, void *buf, size_t len) { ssize_t nr; if (len > MAX_IO_SIZE) - len = MAX_IO_SIZE; + len = MAX_IO_SIZE; while (1) { nr = read(fd, buf, len); if ((nr < 0) && (errno == EAGAIN || errno == EINTR)) @@ -165,7 +165,7 @@ ssize_t xwrite(int fd, const void *buf, size_t len) { ssize_t nr; if (len > MAX_IO_SIZE) - len = MAX_IO_SIZE; + len = MAX_IO_SIZE; while (1) { nr = write(fd, buf, len); if ((nr < 0) && (errno == EAGAIN || errno == EINTR)) |