mirror of
https://git.proxmox.com/git/libgit2
synced 2025-06-21 01:39:04 +00:00
Merge pull request #3517 from jacquesg/warnings-fixes
Fix some warnings
This commit is contained in:
commit
c4f60543b7
@ -278,7 +278,7 @@ void test_checkout_crlf__autocrlf_true_index_size_is_filtered_size(void)
|
|||||||
void test_checkout_crlf__with_ident(void)
|
void test_checkout_crlf__with_ident(void)
|
||||||
{
|
{
|
||||||
git_index *index;
|
git_index *index;
|
||||||
git_index_entry *entry;
|
const git_index_entry *entry;
|
||||||
git_blob *blob;
|
git_blob *blob;
|
||||||
git_checkout_options opts = GIT_CHECKOUT_OPTIONS_INIT;
|
git_checkout_options opts = GIT_CHECKOUT_OPTIONS_INIT;
|
||||||
opts.checkout_strategy = GIT_CHECKOUT_FORCE;
|
opts.checkout_strategy = GIT_CHECKOUT_FORCE;
|
||||||
|
@ -233,7 +233,7 @@ void test_core_filebuf__hidden_file(void)
|
|||||||
|
|
||||||
void test_core_filebuf__detects_directory(void)
|
void test_core_filebuf__detects_directory(void)
|
||||||
{
|
{
|
||||||
git_filebuf file = GIT_FILEBUF_INIT, fail = GIT_FILEBUF_INIT;
|
git_filebuf file = GIT_FILEBUF_INIT;
|
||||||
|
|
||||||
cl_must_pass(p_mkdir("foo", 0777));
|
cl_must_pass(p_mkdir("foo", 0777));
|
||||||
cl_git_fail_with(GIT_EDIRECTORY, git_filebuf_open(&file, "foo", 0, 0666));
|
cl_git_fail_with(GIT_EDIRECTORY, git_filebuf_open(&file, "foo", 0, 0666));
|
||||||
|
@ -235,6 +235,7 @@ static int progress_abort_diff(
|
|||||||
const char *new_path,
|
const char *new_path,
|
||||||
void *payload)
|
void *payload)
|
||||||
{
|
{
|
||||||
|
GIT_UNUSED(diff_so_far);
|
||||||
GIT_UNUSED(old_path);
|
GIT_UNUSED(old_path);
|
||||||
GIT_UNUSED(new_path);
|
GIT_UNUSED(new_path);
|
||||||
GIT_UNUSED(payload);
|
GIT_UNUSED(payload);
|
||||||
|
@ -305,7 +305,6 @@ void test_index_racy__read_index_clears_uptodate_bit(void)
|
|||||||
{
|
{
|
||||||
git_index *index, *newindex;
|
git_index *index, *newindex;
|
||||||
const git_index_entry *entry;
|
const git_index_entry *entry;
|
||||||
git_oid id;
|
|
||||||
|
|
||||||
setup_uptodate_files();
|
setup_uptodate_files();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user