summaryrefslogtreecommitdiff
path: root/examples/fetch.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/fetch.c')
-rw-r--r--examples/fetch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/fetch.c b/examples/fetch.c
index 7f8e2317f..3b1fad11a 100644
--- a/examples/fetch.c
+++ b/examples/fetch.c
@@ -21,7 +21,7 @@ static int update_cb(const char *refname, const git_oid *a, const git_oid *b, vo
git_oid_fmt(b_str, b);
b_str[GIT_OID_HEXSZ] = '\0';
- if (git_oid_iszero(a)) {
+ if (git_oid_is_zero(a)) {
printf("[new] %.20s %s\n", b_str, refname);
} else {
git_oid_fmt(a_str, a);