summaryrefslogtreecommitdiff
path: root/submodule.h
diff options
context:
space:
mode:
authorRené Scharfe <rene.scharfe@lsrfire.ath.cx>2012-04-10 19:10:26 (GMT)
committerJunio C Hamano <gitster@pobox.com>2012-04-10 19:27:54 (GMT)
commitc2df7585efcced5833891938fe01c24c9fb36dd7 (patch)
tree483f818156ddb2d6ce2543a9d4494ff108191029 /submodule.h
parente8dde3e5f9ddb7cf95a6ff3cea6cf07c3a2db80d (diff)
downloadgit-c2df7585efcced5833891938fe01c24c9fb36dd7.zip
git-c2df7585efcced5833891938fe01c24c9fb36dd7.tar.gz
git-c2df7585efcced5833891938fe01c24c9fb36dd7.tar.bz2
submodule: fix prototype of gitmodules_config
Add void to make it match its definition in submodule.c. Signed-off-by: Rene Scharfe <rene.scharfe@lsrfire.ath.cx> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'submodule.h')
-rw-r--r--submodule.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/submodule.h b/submodule.h
index 80e04f3..9c5e5c0 100644
--- a/submodule.h
+++ b/submodule.h
@@ -13,7 +13,7 @@ enum {
void set_diffopt_flags_from_submodule_config(struct diff_options *diffopt,
const char *path);
int submodule_config(const char *var, const char *value, void *cb);
-void gitmodules_config();
+void gitmodules_config(void);
int parse_submodule_config_option(const char *var, const char *value);
void handle_ignore_submodules_arg(struct diff_options *diffopt, const char *);
int parse_fetch_recurse_submodules_arg(const char *opt, const char *arg);