summaryrefslogtreecommitdiff
path: root/src/filebuf.c
diff options
context:
space:
mode:
authorSebastian Schuberth <sschuberth@gmail.com>2011-09-08 14:22:29 +0200
committerSebastian Schuberth <sschuberth@gmail.com>2011-09-08 17:07:52 +0200
commit45e93ef34e3373440d17081557e1e5100caaaeac (patch)
treef6d8ed90dca4f21ef785bbcd54e74552c1698e93 /src/filebuf.c
parent26e74c6acedaec5c76944ac1f1a0f9215f23737f (diff)
downloadlibgit2-45e93ef34e3373440d17081557e1e5100caaaeac.tar.gz
Fix minor indentation issues (spaces to tabs)
Diffstat (limited to 'src/filebuf.c')
-rw-r--r--src/filebuf.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/filebuf.c b/src/filebuf.c
index 6d398a7db..9388d8be7 100644
--- a/src/filebuf.c
+++ b/src/filebuf.c
@@ -125,15 +125,15 @@ static int write_deflate(git_filebuf *file, void *source, size_t len)
zs->next_out = file->z_buf;
zs->avail_out = file->buf_size;
- result = deflate(zs, file->flush_mode);
- assert(result != Z_STREAM_ERROR);
+ result = deflate(zs, file->flush_mode);
+ assert(result != Z_STREAM_ERROR);
- have = file->buf_size - zs->avail_out;
+ have = file->buf_size - zs->avail_out;
if (p_write(file->fd, file->z_buf, have) < GIT_SUCCESS)
return git__throw(GIT_EOSERR, "Failed to write to file");
- } while (zs->avail_out == 0);
+ } while (zs->avail_out == 0);
assert(zs->avail_in == 0);