Commit 45e93ef34e3373440d17081557e1e5100caaaeac

Sebastian Schuberth 2011-09-08T14:22:29

Fix minor indentation issues (spaces to tabs)

diff --git a/src/config_file.c b/src/config_file.c
index 4e5dd0b..7fb54a6 100644
--- a/src/config_file.c
+++ b/src/config_file.c
@@ -539,9 +539,9 @@ static char *cfg_readline(diskfile_backend *cfg)
 	while (isspace(*line_src))
 		++line_src;
 
-    line_end = strchr(line_src, '\n');
+	line_end = strchr(line_src, '\n');
 
-    /* no newline at EOF */
+	/* no newline at EOF */
 	if (line_end == NULL)
 		line_end = strchr(line_src, 0);
 
diff --git a/src/filebuf.c b/src/filebuf.c
index 6d398a7..9388d8b 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);