Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVicent Marti <tanoku@gmail.com>2013-01-03 22:17:07 +0400
committerVicent Marti <tanoku@gmail.com>2013-01-03 22:17:07 +0400
commit7b51d675e89371661a6c97f76050d4b2477e171a (patch)
tree89c0167eea789d73f2306bf756c22a4b3b3dc0ae /tests-clar/odb
parentf6fded8f9110aa05fe3d947d9e53cbd5cc13d1d5 (diff)
Even more cleanups
Diffstat (limited to 'tests-clar/odb')
-rw-r--r--tests-clar/odb/alternates.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests-clar/odb/alternates.c b/tests-clar/odb/alternates.c
index c4b364b16..be7bfa9cd 100644
--- a/tests-clar/odb/alternates.c
+++ b/tests-clar/odb/alternates.c
@@ -6,7 +6,7 @@ static git_buf destpath, filepath;
static const char *paths[] = {
"A.git", "B.git", "C.git", "D.git", "E.git", "F.git", "G.git"
};
-static git_filebuf file;
+static git_filebuf file;
static git_repository *repo;
void test_odb_alternates__cleanup(void)
@@ -16,7 +16,7 @@ void test_odb_alternates__cleanup(void)
git_buf_free(&destpath);
git_buf_free(&filepath);
- for (i=0; i<ARRAY_SIZE(paths); i++)
+ for (i = 0; i < ARRAY_SIZE(paths); i++)
cl_fixture_cleanup(paths[i]);
}