summaryrefslogtreecommitdiff
path: root/src/notes.c
diff options
context:
space:
mode:
authorschu <schu-github@schulog.org>2012-02-16 11:48:14 +0100
committerschu <schu-github@schulog.org>2012-02-16 12:01:09 +0100
commit0691966a738086750f784d5b0b949c5cf0235427 (patch)
tree88f84217747ad3502a46e4d139f31cb9fbb380aa /src/notes.c
parent6117895fef92ddd08c437ce5a7cdc4bf56754cc3 (diff)
downloadlibgit2-0691966a738086750f784d5b0b949c5cf0235427.tar.gz
notes: fix assert
Hopefully fix issue "Don't sleep and code" - #558. Signed-off-by: schu <schu-github@schulog.org>
Diffstat (limited to 'src/notes.c')
-rw-r--r--src/notes.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/notes.c b/src/notes.c
index 81fc00361..68554c36f 100644
--- a/src/notes.c
+++ b/src/notes.c
@@ -304,7 +304,7 @@ int git_note_read(git_note **out, git_repository *repo,
if (error < GIT_SUCCESS)
return git__rethrow(error, "Failed to lookup reference `%s`", notes_ref);
- assert(git_ref_type(ref) == GIT_REF_OID);
+ assert(git_reference_type(ref) == GIT_REF_OID);
sha = git_reference_oid(ref);
error = git_commit_lookup(&commit, repo, sha);
@@ -347,7 +347,7 @@ int git_note_create(git_oid *out, git_repository *repo,
return git__rethrow(error, "Failed to lookup reference `%s`", notes_ref);
if (error == GIT_SUCCESS) {
- assert(git_ref_type(ref) == GIT_REF_OID);
+ assert(git_reference_type(ref) == GIT_REF_OID);
/* lookup existing notes tree oid */
@@ -393,7 +393,7 @@ int git_note_remove(git_repository *repo, const char *notes_ref,
if (error < GIT_SUCCESS)
return git__rethrow(error, "Failed to lookup reference `%s`", notes_ref);
- assert(git_ref_type(ref) == GIT_REF_OID);
+ assert(git_reference_type(ref) == GIT_REF_OID);
git_oid_cpy(&sha, git_reference_oid(ref));
git_reference_free(ref);