diff options
author | Carlos Martín Nieto <cmn@dwim.me> | 2013-08-08 16:59:39 +0200 |
---|---|---|
committer | Carlos Martín Nieto <cmn@dwim.me> | 2013-08-08 16:59:39 +0200 |
commit | cca5df6376fd41fb4fbbb9f8a9ff87c38079dfd5 (patch) | |
tree | d7e25181e8ba26300208757834788639478a4ec8 /include/git2/sys/config.h | |
parent | 3a7ffc29c9416c5d182835c7f18c04437366f218 (diff) | |
download | libgit2-cca5df6376fd41fb4fbbb9f8a9ff87c38079dfd5.tar.gz |
config: hopefully get the iterator to work on multivars
Diffstat (limited to 'include/git2/sys/config.h')
-rw-r--r-- | include/git2/sys/config.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/git2/sys/config.h b/include/git2/sys/config.h index 477d47271..d5b450a6c 100644 --- a/include/git2/sys/config.h +++ b/include/git2/sys/config.h @@ -39,7 +39,7 @@ struct git_config_iterator { * Return the current entry and advance the iterator. The * memory belongs to the library. */ - int (*next)(const git_config_entry *entry, git_config_iterator *iter); + int (*next)(git_config_entry *entry, git_config_iterator *iter); /** * Free the iterator |