Commit c4cbab32 by lhchavez

Handle one more unused variable introduced since the PR started

parent 7488705d
......@@ -1915,7 +1915,13 @@ GIT_INLINE(bool) should_validate_longpaths(git_repository *repo)
}
#else
# define should_validate_longpaths(repo) (GIT_UNUSED(repo), false)
GIT_INLINE(bool) should_validate_longpaths(git_repository *repo)
{
GIT_UNUSED(repo);
return false;
}
#endif
int git_path_validate_workdir(git_repository *repo, const char *path)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment