diff options
author | Vicent Marti <tanoku@gmail.com> | 2011-05-05 01:49:27 +0300 |
---|---|---|
committer | Vicent Marti <tanoku@gmail.com> | 2011-05-09 21:58:02 +0300 |
commit | 5eb0fab846d6b2f8bcf3caf7a9e33afa36753850 (patch) | |
tree | 3ae0596ff22aff78244d559bd5810d44877df9eb /include/git2/common.h | |
parent | 3f53c97113deb986b58aac8bb89f76b47e76507b (diff) | |
download | libgit2-5eb0fab846d6b2f8bcf3caf7a9e33afa36753850.tar.gz |
errors: Update external API with new `git_lasterror`
Diffstat (limited to 'include/git2/common.h')
-rw-r--r-- | include/git2/common.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/git2/common.h b/include/git2/common.h index 22c7cc466..1d2d3a3e9 100644 --- a/include/git2/common.h +++ b/include/git2/common.h @@ -170,6 +170,9 @@ /** The given literal is not a valid number */ #define GIT_ENOTNUM (GIT_ERROR - 25) +/** Streaming error */ +#define GIT_ESTREAM (GIT_ERROR - 26) + GIT_BEGIN_DECL typedef struct { |