diff options
| author | Vicent Martà <vicent@github.com> | 2013-04-30 04:02:52 -0700 |
|---|---|---|
| committer | Vicent Martà <vicent@github.com> | 2013-04-30 04:02:52 -0700 |
| commit | cd2ed9f0cc9d8e0e1724304e946adb28271e0669 (patch) | |
| tree | cdf9e1dade9f0d6e0317735ac2d40d81ff074c16 /src/remote.c | |
| parent | d76fb20ebce03b2fd87c2472d556bf9b64894efd (diff) | |
| parent | 203d5b0e6829242ea412bbef7751e3c522ac5dd8 (diff) | |
| download | libgit2-cd2ed9f0cc9d8e0e1724304e946adb28271e0669.tar.gz | |
Merge pull request #1518 from arrbee/export-oid-comparison
Remove most inlines from the public API
Diffstat (limited to 'src/remote.c')
| -rw-r--r-- | src/remote.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/remote.c b/src/remote.c index 08f56cd51..6eaaf8b49 100644 --- a/src/remote.c +++ b/src/remote.c @@ -923,7 +923,7 @@ static int update_tips_for_spec(git_remote *remote, git_refspec *spec, git_vecto if (error == GIT_ENOTFOUND) memset(&old, 0, GIT_OID_RAWSZ); - if (!git_oid_cmp(&old, &head->oid)) + if (!git_oid__cmp(&old, &head->oid)) continue; /* In autotag mode, don't overwrite any locally-existing tags */ |
