Documentation: remove stray backslash in show-branch discussion
[gitweb.git] / merge-recursive.c
index 7635659969f498b7a00b5019da32593bf7b9ba89..6cff9cdc86b1db7c4bd0a75175a77b2474417dfb 100644 (file)
@@ -800,7 +800,8 @@ static int process_renames(struct merge_options *o,
                           struct string_list *b_renames)
 {
        int clean_merge = 1, i, j;
-       struct string_list a_by_dst = {NULL, 0, 0, 0}, b_by_dst = {NULL, 0, 0, 0};
+       struct string_list a_by_dst = STRING_LIST_INIT_NODUP;
+       struct string_list b_by_dst = STRING_LIST_INIT_NODUP;
        const struct rename *sre;
 
        for (i = 0; i < a_renames->nr; i++) {