diff options
author | Junio C Hamano <gitster@pobox.com> | 2020-04-22 22:42:49 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-04-22 22:42:49 +0200 |
commit | a768f866e9233b758cb21e25c7b8c985b0009c1f (patch) | |
tree | 1b411eb4c59a9e648a50c1dfe829d89418d0b30b /t/helper/test-tool.h | |
parent | Merge branch 'jm/gitweb-fastcgi-utf8' (diff) | |
parent | oidset: stop referring to sha1-array (diff) | |
download | git-a768f866e9233b758cb21e25c7b8c985b0009c1f.tar.xz git-a768f866e9233b758cb21e25c7b8c985b0009c1f.zip |
Merge branch 'jk/oid-array-cleanups'
Code cleanup.
* jk/oid-array-cleanups:
oidset: stop referring to sha1-array
ref-filter: stop referring to "sha1 array"
bisect: stop referring to sha1_array
test-tool: rename sha1-array to oid-array
oid_array: rename source file from sha1-array
oid_array: use size_t for iteration
oid_array: use size_t for count and allocation
Diffstat (limited to 't/helper/test-tool.h')
-rw-r--r-- | t/helper/test-tool.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/helper/test-tool.h b/t/helper/test-tool.h index 4eb5e6609e..1cbaec02f3 100644 --- a/t/helper/test-tool.h +++ b/t/helper/test-tool.h @@ -47,7 +47,7 @@ int cmd__run_command(int argc, const char **argv); int cmd__scrap_cache_tree(int argc, const char **argv); int cmd__serve_v2(int argc, const char **argv); int cmd__sha1(int argc, const char **argv); -int cmd__sha1_array(int argc, const char **argv); +int cmd__oid_array(int argc, const char **argv); int cmd__sha256(int argc, const char **argv); int cmd__sigchain(int argc, const char **argv); int cmd__strcmp_offset(int argc, const char **argv); |