summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 572e4f6)
raw | patch | inline | side by side (parent: 572e4f6)
author | Thomas Rast <trast@student.ethz.ch> | |
Fri, 21 May 2010 10:07:47 +0000 (12:07 +0200) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Fri, 21 May 2010 10:59:12 +0000 (03:59 -0700) |
Add the missing argument list. (Its lack triggered a compiler warning
for me.)
Signed-off-by: Thomas Rast <trast@student.ethz.ch>
Acked-by: Alex Riesen <raa.lkml@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
for me.)
Signed-off-by: Thomas Rast <trast@student.ethz.ch>
Acked-by: Alex Riesen <raa.lkml@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
cache.h | patch | blob | history |
index 4a0c75da7e0e53c008816bf5b26ae21a1bb32ce1..73f0f7b098d0ec431eda0b8366a42e3f6d7ef863 100644 (file)
--- a/cache.h
+++ b/cache.h
extern int git_default_config(const char *, const char *, void *);
extern int git_config_from_file(config_fn_t fn, const char *, void *);
extern int git_config_parse_parameter(const char *text);
-extern int git_config_from_parameters();
+extern int git_config_from_parameters(config_fn_t fn, void *data);
extern int git_config(config_fn_t fn, void *);
extern int git_parse_ulong(const char *, unsigned long *);
extern int git_config_int(const char *, const char *);