diff options
| author | Edward Thomson <ethomson@edwardthomson.com> | 2018-12-27 13:47:34 -0600 |
|---|---|---|
| committer | Edward Thomson <ethomson@edwardthomson.com> | 2019-01-22 22:30:35 +0000 |
| commit | f673e232afe22eb865cdc915e55a2df6493f0fbb (patch) | |
| tree | e79e3e6fb1e1d78367679aea75e66c8141b4daa8 /tests/threads/refdb.c | |
| parent | 647dfdb42d06514a85c1499f1be88a32b8a4c24b (diff) | |
| download | libgit2-f673e232afe22eb865cdc915e55a2df6493f0fbb.tar.gz | |
git_error: use new names in internal APIs and usage
Move to the `git_error` name in the internal API for error-related
functions.
Diffstat (limited to 'tests/threads/refdb.c')
| -rw-r--r-- | tests/threads/refdb.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/threads/refdb.c b/tests/threads/refdb.c index 94c5f5057..a4630df6a 100644 --- a/tests/threads/refdb.c +++ b/tests/threads/refdb.c @@ -58,7 +58,7 @@ static void *iterate_refs(void *arg) git_reference_iterator_free(i); git_repository_free(repo); - giterr_clear(); + git_error_clear(); return arg; } @@ -101,7 +101,7 @@ static void *create_refs(void *arg) git_repository_free(repo); - giterr_clear(); + git_error_clear(); return arg; } @@ -143,7 +143,7 @@ static void *delete_refs(void *arg) } git_repository_free(repo); - giterr_clear(); + git_error_clear(); return arg; } |
