Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlos Martín Nieto <cmn@dwim.me>2014-01-24 14:18:51 +0400
committerCarlos Martín Nieto <cmn@dwim.me>2014-01-24 14:18:51 +0400
commitd0a3de720e085d335d9ad46dc00a23dd03eda793 (patch)
tree251fc381646f11e7bbac99046b81ec419c65b446 /src/notes.h
parentca55fc6356a5edd838ca03b82f3601bd94e8d750 (diff)
note: rename the id getter to git_note_id()
This was left over when we did the general switch.
Diffstat (limited to 'src/notes.h')
-rw-r--r--src/notes.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/notes.h b/src/notes.h
index 39e18b621..e9cfa00fa 100644
--- a/src/notes.h
+++ b/src/notes.h
@@ -21,7 +21,7 @@
"Notes removed by 'git_note_remove' from libgit2"
struct git_note {
- git_oid oid;
+ git_oid id;
char *message;
};