summaryrefslogtreecommitdiff
path: root/convert.h
diff options
context:
space:
mode:
authorBrandon Williams <bmwill@google.com>2017-06-12 22:13:54 (GMT)
committerJunio C Hamano <gitster@pobox.com>2017-06-13 18:40:51 (GMT)
commitd6c41c20e688a1b284b92d92320ba56f639688de (patch)
tree1ef198c6b461be52fc41d3aee78a94328127e9a4 /convert.h
parent49a6d31fc8c4277b1c5f5b82331e7190afa1d4ce (diff)
downloadgit-d6c41c20e688a1b284b92d92320ba56f639688de.zip
git-d6c41c20e688a1b284b92d92320ba56f639688de.tar.gz
git-d6c41c20e688a1b284b92d92320ba56f639688de.tar.bz2
convert: convert convert_to_git_filter_fd to take an index
Signed-off-by: Brandon Williams <bmwill@google.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'convert.h')
-rw-r--r--convert.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/convert.h b/convert.h
index 667b7df..3a813a7 100644
--- a/convert.h
+++ b/convert.h
@@ -52,7 +52,8 @@ static inline int would_convert_to_git(const char *path)
return convert_to_git(path, NULL, 0, NULL, 0);
}
/* Precondition: would_convert_to_git_filter_fd(path) == true */
-extern void convert_to_git_filter_fd(const char *path, int fd,
+extern void convert_to_git_filter_fd(const struct index_state *istate,
+ const char *path, int fd,
struct strbuf *dst,
enum safe_crlf checksafe);
extern int would_convert_to_git_filter_fd(const char *path);