diff options
author | Carlos Martín Nieto <cmn@elego.de> | 2011-03-29 12:25:46 +0200 |
---|---|---|
committer | Carlos Martín Nieto <cmn@elego.de> | 2011-03-29 12:25:46 +0200 |
commit | 05314b5bf449211726ca7d84f15db3077375a3cd (patch) | |
tree | 311b343c9c17e68fc0644c5cb92899fc132507cc /include/git2/common.h | |
parent | 9f7f4122cfa49f8932fd65f9751d96125c8155bc (diff) | |
download | libgit2-05314b5bf449211726ca7d84f15db3077375a3cd.tar.gz |
Make GIT_EINVALIDTYPE available for use in config
Signed-off-by: Carlos Martín Nieto <cmn@elego.de>
Diffstat (limited to 'include/git2/common.h')
-rw-r--r-- | include/git2/common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/git2/common.h b/include/git2/common.h index 34efe808b..ec338db4e 100644 --- a/include/git2/common.h +++ b/include/git2/common.h @@ -115,7 +115,7 @@ /** The specified repository is invalid */ #define GIT_ENOTAREPO (GIT_ERROR - 7) -/** The object type is invalid or doesn't match */ +/** The object or config variable type is invalid or doesn't match */ #define GIT_EINVALIDTYPE (GIT_ERROR - 8) /** The object cannot be written that because it's missing internal data */ |