odb: mark unused variable

This commit is contained in:
Michael Schubert 2012-09-06 11:35:09 +02:00
parent 7a3fc9fb17
commit 0e9f2fcef6

View File

@ -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);
}