about summary refs log tree commit diff
path: root/third_party/git/builtin/remote-ext.c
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/git/builtin/remote-ext.c')
-rw-r--r--third_party/git/builtin/remote-ext.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/third_party/git/builtin/remote-ext.c b/third_party/git/builtin/remote-ext.c
index 6a9127a33c..fd3538d4f0 100644
--- a/third_party/git/builtin/remote-ext.c
+++ b/third_party/git/builtin/remote-ext.c
@@ -117,12 +117,12 @@ static char *strip_escapes(const char *str, const char *service,
 	}
 }
 
-static void parse_argv(struct argv_array *out, const char *arg, const char *service)
+static void parse_argv(struct strvec *out, const char *arg, const char *service)
 {
 	while (*arg) {
 		char *expanded = strip_escapes(arg, service, &arg);
 		if (expanded)
-			argv_array_push(out, expanded);
+			strvec_push(out, expanded);
 		free(expanded);
 	}
 }