Just FYI. As I build stuff with -Werror to be on the safe side, I had to fix this up a bit before queueing the patch. convert.c | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/convert.c b/convert.c index 0b24790..d5aebed 100644 --- a/convert.c +++ b/convert.c @@ -1,6 +1,7 @@ #include "cache.h" #include "attr.h" #include "run-command.h" +#include "quote.h" /* * convert.c - convert a file when checking it out and checking it in. @@ -335,8 +336,8 @@ static int filter_buffer(int in, int out, void *data) struct strbuf cmd = STRBUF_INIT; struct strbuf path = STRBUF_INIT; struct strbuf_expand_dict_entry dict[] = { - "f", NULL, - NULL, NULL, + { "f", NULL, }, + { NULL, NULL, }, }; /* quote the path to preserve spaces, etc. */ -- 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