diff options
| author | Vicent Marti <vicent@github.com> | 2014-01-27 09:39:36 -0800 |
|---|---|---|
| committer | Vicent Marti <vicent@github.com> | 2014-01-27 09:39:36 -0800 |
| commit | 93954245e081ff803028431c5da2c8a073512643 (patch) | |
| tree | cb9a16891871bead0af7188f7400c8e7ae4c8692 /examples | |
| parent | 46e7fc1853bb92a2deae93543477f1c1255352d0 (diff) | |
| parent | a1bbc0ce205b6d3496338d3253c847aa91cabc7b (diff) | |
| download | libgit2-93954245e081ff803028431c5da2c8a073512643.tar.gz | |
Merge pull request #2075 from libgit2/cmn/leftover-oid
Leftover OID -> ID changes
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/showindex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/showindex.c b/examples/showindex.c index 7f7c38379..ad4a16e8e 100644 --- a/examples/showindex.c +++ b/examples/showindex.c @@ -49,7 +49,7 @@ int main (int argc, char** argv) for (i = 0; i < ecount; ++i) { const git_index_entry *e = git_index_get_byindex(index, i); - git_oid_fmt(out, &e->oid); + git_oid_fmt(out, &e->id); printf("File Path: %s\n", e->path); printf(" Stage: %d\n", git_index_entry_stage(e)); |
