Skip to content

Commit 7cd54d3

Browse files
Denton-Lgitster
authored andcommitted
wrapper: indent with tabs
The codebase uses tabs for indentation. Convert an erroneous space indent into a tab indent. Signed-off-by: Denton Liu <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 0b6806b commit 7cd54d3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

wrapper.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ ssize_t xread(int fd, void *buf, size_t len)
147147
{
148148
ssize_t nr;
149149
if (len > MAX_IO_SIZE)
150-
len = MAX_IO_SIZE;
150+
len = MAX_IO_SIZE;
151151
while (1) {
152152
nr = read(fd, buf, len);
153153
if ((nr < 0) && (errno == EAGAIN || errno == EINTR))
@@ -165,7 +165,7 @@ ssize_t xwrite(int fd, const void *buf, size_t len)
165165
{
166166
ssize_t nr;
167167
if (len > MAX_IO_SIZE)
168-
len = MAX_IO_SIZE;
168+
len = MAX_IO_SIZE;
169169
while (1) {
170170
nr = write(fd, buf, len);
171171
if ((nr < 0) && (errno == EAGAIN || errno == EINTR))

0 commit comments

Comments
 (0)