From d541170c77b7ac738e2ffcdd04c838fb7cbbfb87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Mart=C3=ADn=20Nieto?= Date: Fri, 24 Jan 2014 11:36:41 +0100 Subject: index: rename an entry's id to 'id' This was not converted when we converted the rest, so do it now. --- src/notes.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/notes.c') diff --git a/src/notes.c b/src/notes.c index 1ff0e35c3..ffe5d345a 100644 --- a/src/notes.c +++ b/src/notes.c @@ -640,7 +640,7 @@ int git_note_next( if ((error = git_iterator_current(&item, it)) < 0) return error; - git_oid_cpy(note_id, &item->oid); + git_oid_cpy(note_id, &item->id); if (!(error = process_entry_path(item->path, annotated_id))) git_iterator_advance(NULL, it); -- cgit v1.2.1