diff options
author | Jeff King <peff@peff.net> | 2020-07-28 16:23:39 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-07-28 15:02:17 -0700 |
commit | dbbcd44fb47347a3fdbee88ea21805b7f4ac0b98 (patch) | |
tree | 169f4f51bef928dbc46241d80ab3bff7e3e4af11 /builtin/bundle.c | |
parent | argv-array: rename to strvec (diff) | |
download | tgif-dbbcd44fb47347a3fdbee88ea21805b7f4ac0b98.tar.xz |
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 <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/bundle.c')
-rw-r--r-- | builtin/bundle.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/bundle.c b/builtin/bundle.c index f049d27a14..51fc6d9739 100644 --- a/builtin/bundle.c +++ b/builtin/bundle.c @@ -1,5 +1,5 @@ #include "builtin.h" -#include "argv-array.h" +#include "strvec.h" #include "parse-options.h" #include "cache.h" #include "bundle.h" |