diff options
Diffstat (limited to 'include/git2')
-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 090588999..5d606ed06 100644 --- a/include/git2/sys/config.h +++ b/include/git2/sys/config.h @@ -57,7 +57,7 @@ struct git_config_backend { /* Open means open the file/database and parse if necessary */ int (*open)(struct git_config_backend *, git_config_level_t level); - int (*get)(const struct git_config_backend *, const char *key, const git_config_entry **entry); + int (*get)(struct git_config_backend *, const char *key, const git_config_entry **entry); int (*set)(struct git_config_backend *, const char *key, const char *value); int (*set_multivar)(git_config_backend *cfg, const char *name, const char *regexp, const char *value); int (*del)(struct git_config_backend *, const char *key); |