Commit 0e9f2fcef6955a9c15f216ad78eec538cc97a8f3

Michael Schubert 2012-09-06T11:35:09

odb: mark unused variable

1
2
3
4
5
6
7
8
9
10
11
12
diff --git a/src/odb.c b/src/odb.c
index 55d434a..34033d1 100644
--- a/src/odb.c
+++ b/src/odb.c
@@ -710,6 +710,7 @@ int git_odb_open_rstream(git_odb_stream **stream, git_odb *db, const git_oid *oi
 
 void * git_odb_backend_malloc(git_odb_backend *backend, size_t len)
 {
+	GIT_UNUSED(backend);
 	return git__malloc(len);
 }