diff options
| author | Edward Thomson <ethomson@edwardthomson.com> | 2019-06-08 17:28:35 -0500 |
|---|---|---|
| committer | Edward Thomson <ethomson@edwardthomson.com> | 2019-06-16 00:16:47 +0100 |
| commit | 5d92e54745eaad2c89aa6457d504411ceee3a4f4 (patch) | |
| tree | 2b417c13f9bc008dff9bad153eeb5b74c5a09fb8 /src/tree.c | |
| parent | fef847ae57d74e93563bc04222d9da7007fffc4f (diff) | |
| download | libgit2-5d92e54745eaad2c89aa6457d504411ceee3a4f4.tar.gz | |
oid: `is_zero` instead of `iszero`
The only function that is named `issomething` (without underscore) was
`git_oid_iszero`. Rename it to `git_oid_is_zero` for consistency with
the rest of the library.
Diffstat (limited to 'src/tree.c')
| -rw-r--r-- | src/tree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tree.c b/src/tree.c index 12317540c..5a48bfcf8 100644 --- a/src/tree.c +++ b/src/tree.c @@ -479,7 +479,7 @@ static int check_entry(git_repository *repo, const char *filename, const git_oid if (!valid_entry_name(repo, filename)) return tree_error("failed to insert entry: invalid name for a tree entry", filename); - if (git_oid_iszero(id)) + if (git_oid_is_zero(id)) return tree_error("failed to insert entry: invalid null OID", filename); if (filemode != GIT_FILEMODE_COMMIT && |
