From 6cfbbf7e3205e902bd94bf16743127c705e3e588 Mon Sep 17 00:00:00 2001 From: Michael Schubert Date: Tue, 30 Oct 2012 18:50:59 +0100 Subject: [PATCH] Fix a couple of warnings --- src/remote.c | 2 +- tests-clar/stash/foreach.c | 5 +++-- tests-clar/stash/stash_helpers.c | 1 + 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/src/remote.c b/src/remote.c index 5c7a80859..d3a2c4564 100644 --- a/src/remote.c +++ b/src/remote.c @@ -914,7 +914,7 @@ static int rename_one_remote_reference( const char *old_remote_name, const char *new_remote_name) { - int error; + int error = -1; git_buf new_name = GIT_BUF_INIT; git_reference *reference = NULL; diff --git a/tests-clar/stash/foreach.c b/tests-clar/stash/foreach.c index 808650786..818d906e7 100644 --- a/tests-clar/stash/foreach.c +++ b/tests-clar/stash/foreach.c @@ -39,10 +39,11 @@ static int callback_cb( const git_oid *stash_oid, void *payload) { - int i = 0; - bool found = false; struct callback_data *data = (struct callback_data *)payload; + GIT_UNUSED(index); + GIT_UNUSED(message); + cl_assert_equal_i(0, git_oid_streq(stash_oid, data->oids[data->invokes++])); return 0; diff --git a/tests-clar/stash/stash_helpers.c b/tests-clar/stash/stash_helpers.c index f646ef28b..35017cec6 100644 --- a/tests-clar/stash/stash_helpers.c +++ b/tests-clar/stash/stash_helpers.c @@ -1,5 +1,6 @@ #include "clar_libgit2.h" #include "fileops.h" +#include "stash_helpers.h" void commit_staged_files( git_oid *commit_oid,