Make internal methods static Keep all the repository init code as static. Signed-off-by: Vicent Marti <tanoku@gmail.com>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
diff --git a/src/repository.c b/src/repository.c
index 6af75f7..74b12c4 100644
--- a/src/repository.c
+++ b/src/repository.c
@@ -740,14 +740,14 @@ int git_object_typeisloose(git_otype type)
-int repo_init_reinit(repo_init *results)
+static int repo_init_reinit(repo_init *results)
{
/* TODO: reinit the repository */
results->has_been_reinit = 1;
return GIT_SUCCESS;
}
-int repo_init_createhead(const char *head_path)
+static int repo_init_createhead(const char *head_path)
{
git_file fd;
int error = GIT_SUCCESS;
@@ -765,7 +765,7 @@ int repo_init_createhead(const char *head_path)
return error;
}
-int repo_init_structure(repo_init *results)
+static int repo_init_structure(repo_init *results)
{
const int mode = 0755; /* or 0777 ? */
@@ -813,7 +813,7 @@ int repo_init_structure(repo_init *results)
return GIT_SUCCESS;
}
-int repo_init_find_dir(repo_init *results, const char* path)
+static int repo_init_find_dir(repo_init *results, const char* path)
{
const int MAX_GITDIR_TREE_STRUCTURE_PATH_LENGTH = 66;