]> git.ipfire.org Git - thirdparty/git.git/blobdiff - refs.c
Merge branch 'ab/trace2-squelch-gcc-warning'
[thirdparty/git.git] / refs.c
diff --git a/refs.c b/refs.c
index 1616c7554a17053c8c43ab56414eefb23377c1bc..8c9490235ea6fa08013dda680f9eaeae8f356855 100644 (file)
--- a/refs.c
+++ b/refs.c
@@ -1107,7 +1107,7 @@ int ref_transaction_create(struct ref_transaction *transaction,
        if (!new_oid || is_null_oid(new_oid))
                BUG("create called without valid new_oid");
        return ref_transaction_update(transaction, refname, new_oid,
-                                     &null_oid, flags, msg, err);
+                                     null_oid(), flags, msg, err);
 }
 
 int ref_transaction_delete(struct ref_transaction *transaction,
@@ -1119,7 +1119,7 @@ int ref_transaction_delete(struct ref_transaction *transaction,
        if (old_oid && is_null_oid(old_oid))
                BUG("delete called with old_oid set to zeros");
        return ref_transaction_update(transaction, refname,
-                                     &null_oid, old_oid,
+                                     null_oid(), old_oid,
                                      flags, msg, err);
 }