update-index: drop unused prefix_length parameter from do_reupdate()

The prefix is always a NUL-terminated string, and we just end up passing it along to parse_pathspec() anyway (which does not even take a length). Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>

Jeff King committed Mar 20, 2019 at 04:14 UTC 5bb1cb6d023fb1087694b8d7148bc6f3f306efc5
1 file changed +2 -3
builtin/update-index.c
+2 -3
@@ -724,7 +724,7 @@ static int do_unresolve(int ac, const char **av,
724 }
725
726 static int do_reupdate(int ac, const char **av,
727 - const char *prefix, int prefix_length)
727 + const char *prefix)
728 {
729 /* Read HEAD and run update-index on paths that are
730 * merged and already different between index and HEAD.
@@ -940,8 +940,7 @@ static enum parse_opt_result reupdate_callback(
940
941 /* consume remaining arguments. */
942 setup_work_tree();
943 - *has_errors = do_reupdate(ctx->argc, ctx->argv,
944 - prefix, prefix ? strlen(prefix) : 0);
943 + *has_errors = do_reupdate(ctx->argc, ctx->argv, prefix);
944 if (*has_errors)
945 active_cache_changed = 0;
946