Signed-off-by: Ramsay Jones <ramsay@xxxxxxxxxxxxxxxxxxxx> --- Hi Stefan, If you need to re-roll your 'sb/attr' branch, could you please squash this into the relevant patch. Alternatively, since there is only a single call site for git_attr() (on line #1005), you could perhaps remove git_attr() and inline that call. (However, that does make that line exceed 80 columns). Thanks! ATB, Ramsay Jones attr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/attr.c b/attr.c index 667ba85..84c4b08 100644 --- a/attr.c +++ b/attr.c @@ -169,7 +169,7 @@ static struct git_attr *git_attr_internal(const char *name, int len) return a; } -struct git_attr *git_attr(const char *name) +static struct git_attr *git_attr(const char *name) { return git_attr_internal(name, strlen(name)); } -- 2.10.0