From dbbcd44fb47347a3fdbee88ea21805b7f4ac0b98 Mon Sep 17 00:00:00 2001 From: Jeff King Date: Tue, 28 Jul 2020 16:23:39 -0400 Subject: strvec: rename files from argv-array to strvec This requires updating #include lines across the code-base, but that's all fairly mechanical, and was done with: git ls-files '*.c' '*.h' | xargs perl -i -pe 's/argv-array.h/strvec.h/' Signed-off-by: Jeff King Signed-off-by: Junio C Hamano --- builtin/annotate.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'builtin/annotate.c') diff --git a/builtin/annotate.c b/builtin/annotate.c index da413ae0d1..4353448712 100644 --- a/builtin/annotate.c +++ b/builtin/annotate.c @@ -5,7 +5,7 @@ */ #include "git-compat-util.h" #include "builtin.h" -#include "argv-array.h" +#include "strvec.h" int cmd_annotate(int argc, const char **argv, const char *prefix) { -- cgit v1.2.3