It may not be used in most builds, but it's used via a #ifdef in git-compat-util.h Also, making it static makes a -Wall compile fail since it's not used in the file without NO_MKSTEMPS. Signed-off-by: Brian Gernhardt <brian@xxxxxxxxxxxxxxxxxxxxx> --- Either this, or it should be removed from git-compat-util and wrapped in an #ifdef. (The only current user is git_mkstemps), but since it's referenced in a header file, I figured it shouldn't be static. wrapper.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/wrapper.c b/wrapper.c index 390a7ae..1c41488 100644 --- a/wrapper.c +++ b/wrapper.c @@ -310,7 +310,7 @@ int git_mkstemp_mode(char *pattern, int mode) return git_mkstemps_mode(pattern, 0, mode); } -static int gitmkstemps(char *pattern, int suffix_len) +int gitmkstemps(char *pattern, int suffix_len) { return git_mkstemps_mode(pattern, suffix_len, 0600); } -- 1.7.7.rc0.309.g13ed2.dirty -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html