summaryrefslogtreecommitdiff
path: root/include/git2/odb_backend.h
diff options
context:
space:
mode:
authorVicent Marti <tanoku@gmail.com>2011-09-29 15:34:17 +0200
committerVicent Marti <tanoku@gmail.com>2011-09-29 15:34:17 +0200
commit8af4d074cc3bcc8ea63d75f147be892e4925075b (patch)
tree196374627959e6a39ab3effff0ebac4664b64401 /include/git2/odb_backend.h
parent72bdfdbc7cb868b222127d1592d35a19e47ceb05 (diff)
downloadlibgit2-8af4d074cc3bcc8ea63d75f147be892e4925075b.tar.gz
odb: Let users decide compression level for the loose ODB
Diffstat (limited to 'include/git2/odb_backend.h')
-rw-r--r--include/git2/odb_backend.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/git2/odb_backend.h b/include/git2/odb_backend.h
index 9d0bfdd47..eb8830fb3 100644
--- a/include/git2/odb_backend.h
+++ b/include/git2/odb_backend.h
@@ -93,7 +93,7 @@ typedef enum {
} git_odb_streammode;
GIT_EXTERN(int) git_odb_backend_pack(git_odb_backend **backend_out, const char *objects_dir);
-GIT_EXTERN(int) git_odb_backend_loose(git_odb_backend **backend_out, const char *objects_dir);
+GIT_EXTERN(int) git_odb_backend_loose(git_odb_backend **backend_out, const char *objects_dir, int compression_level, int do_fsync);
GIT_END_DECL