From 7ce7c7607b14248b1a3ae7cdd1c079eb3b6efa09 Mon Sep 17 00:00:00 2001 From: Steffen Prohaska Date: Thu, 21 Aug 2014 18:05:08 +0200 Subject: convert: drop arguments other than 'path' from would_convert_to_git() It is only the path that matters in the decision whether to filter or not. Clarify this by making path the only argument of would_convert_to_git(). Signed-off-by: Steffen Prohaska Signed-off-by: Junio C Hamano --- convert.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'convert.h') diff --git a/convert.h b/convert.h index 0c2143c152..c638b33632 100644 --- a/convert.h +++ b/convert.h @@ -40,10 +40,9 @@ extern int convert_to_working_tree(const char *path, const char *src, size_t len, struct strbuf *dst); extern int renormalize_buffer(const char *path, const char *src, size_t len, struct strbuf *dst); -static inline int would_convert_to_git(const char *path, const char *src, - size_t len, enum safe_crlf checksafe) +static inline int would_convert_to_git(const char *path) { - return convert_to_git(path, src, len, NULL, checksafe); + return convert_to_git(path, NULL, 0, NULL, 0); } /***************************************************************** -- cgit v1.2.3