summaryrefslogtreecommitdiff
path: root/line-log.c
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2020-07-28 20:23:39 (GMT)
committerJunio C Hamano <gitster@pobox.com>2020-07-28 22:02:17 (GMT)
commitdbbcd44fb47347a3fdbee88ea21805b7f4ac0b98 (patch)
tree169f4f51bef928dbc46241d80ab3bff7e3e4af11 /line-log.c
parent873cd28a8b17ff21908c78c7929a7615f8c94992 (diff)
downloadgit-dbbcd44fb47347a3fdbee88ea21805b7f4ac0b98.zip
git-dbbcd44fb47347a3fdbee88ea21805b7f4ac0b98.tar.gz
git-dbbcd44fb47347a3fdbee88ea21805b7f4ac0b98.tar.bz2
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 'line-log.c')
-rw-r--r--line-log.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/line-log.c b/line-log.c
index c536928..05d077b 100644
--- a/line-log.c
+++ b/line-log.c
@@ -14,7 +14,7 @@
#include "graph.h"
#include "userdiff.h"
#include "line-log.h"
-#include "argv-array.h"
+#include "strvec.h"
#include "bloom.h"
static void range_set_grow(struct range_set *rs, size_t extra)