Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
convert.c: remove unused parameter 'path'
author
Torsten Bögershausen
<tboegi@web.de>
Fri, 5 Feb 2016 16:13:22 +0000
(17:13 +0100)
committer
Junio C Hamano
<gitster@pobox.com>
Mon, 8 Feb 2016 17:59:43 +0000
(09:59 -0800)
Some functions get a parameter path, but don't use it.
Remove the unused parameter.
Signed-off-by: Torsten Bögershausen <tboegi@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
convert.c
patch
|
blob
|
history
raw
|
patch
|
inline
| side by side (parent:
320d39c
)
diff --git
a/convert.c
b/convert.c
index 4bb4ec1d836e695a86f309b276fd07e300885c57..a24c2a246cb1af4de3f47c614fa3eb8dceb0e5a9 100644
(file)
--- a/
convert.c
+++ b/
convert.c
@@
-696,7
+696,7
@@
static int ident_to_worktree(const char *path, const char *src, size_t len,
return 1;
}
return 1;
}
-static enum crlf_action git_path_check_crlf(
const char *path,
struct git_attr_check *check)
+static enum crlf_action git_path_check_crlf(struct git_attr_check *check)
{
const char *value = check->value;
{
const char *value = check->value;
@@
-713,7
+713,7
@@
static enum crlf_action git_path_check_crlf(const char *path, struct git_attr_ch
return CRLF_GUESS;
}
return CRLF_GUESS;
}
-static enum eol git_path_check_eol(
const char *path,
struct git_attr_check *check)
+static enum eol git_path_check_eol(struct git_attr_check *check)
{
const char *value = check->value;
{
const char *value = check->value;
@@
-726,8
+726,7
@@
static enum eol git_path_check_eol(const char *path, struct git_attr_check *chec
return EOL_UNSET;
}
return EOL_UNSET;
}
-static struct convert_driver *git_path_check_convert(const char *path,
- struct git_attr_check *check)
+static struct convert_driver *git_path_check_convert(struct git_attr_check *check)
{
const char *value = check->value;
struct convert_driver *drv;
{
const char *value = check->value;
struct convert_driver *drv;
@@
-740,7
+739,7
@@
static struct convert_driver *git_path_check_convert(const char *path,
return NULL;
}
return NULL;
}
-static int git_path_check_ident(
const char *path,
struct git_attr_check *check)
+static int git_path_check_ident(struct git_attr_check *check)
{
const char *value = check->value;
{
const char *value = check->value;
@@
-783,12
+782,12
@@
static void convert_attrs(struct conv_attrs *ca, const char *path)
}
if (!git_check_attr(path, NUM_CONV_ATTRS, ccheck)) {
}
if (!git_check_attr(path, NUM_CONV_ATTRS, ccheck)) {
- ca->crlf_action = git_path_check_crlf(
path,
ccheck + 4);
+ ca->crlf_action = git_path_check_crlf( ccheck + 4);
if (ca->crlf_action == CRLF_GUESS)
if (ca->crlf_action == CRLF_GUESS)
- ca->crlf_action = git_path_check_crlf(
path,
ccheck + 0);
- ca->ident = git_path_check_ident(
path,
ccheck + 1);
- ca->drv = git_path_check_convert(
path,
ccheck + 2);
- ca->eol_attr = git_path_check_eol(
path,
ccheck + 3);
+ ca->crlf_action = git_path_check_crlf(ccheck + 0);
+ ca->ident = git_path_check_ident(ccheck + 1);
+ ca->drv = git_path_check_convert(ccheck + 2);
+ ca->eol_attr = git_path_check_eol(ccheck + 3);
} else {
ca->drv = NULL;
ca->crlf_action = CRLF_GUESS;
} else {
ca->drv = NULL;
ca->crlf_action = CRLF_GUESS;