diff options
author | Edward Thomson <ethomson@edwardthomson.com> | 2019-01-10 22:13:07 +0000 |
---|---|---|
committer | Edward Thomson <ethomson@edwardthomson.com> | 2019-01-22 22:26:51 +0000 |
commit | 647dfdb42d06514a85c1499f1be88a32b8a4c24b (patch) | |
tree | 634850813f54371cde39ca476c3cfb60e487da06 /src/errors.c | |
parent | 20961b9871f12814790ebed80d88692fbb962d4f (diff) | |
download | libgit2-647dfdb42d06514a85c1499f1be88a32b8a4c24b.tar.gz |
git_error: deprecate error values
Replace the `GITERR` values with a `const int` to deprecate error
values.
Diffstat (limited to 'src/errors.c')
-rw-r--r-- | src/errors.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/errors.c b/src/errors.c index aa9325579..1ee4fffb0 100644 --- a/src/errors.c +++ b/src/errors.c @@ -212,7 +212,7 @@ void giterr_system_set(int code) #endif } -/* Deprecated functions */ +/* Deprecated error values and functions */ const git_error *giterr_last(void) { |