summaryrefslogtreecommitdiff
path: root/fuzzers
diff options
context:
space:
mode:
authorEdward Thomson <ethomson@edwardthomson.com>2019-01-23 09:51:50 +0000
committerEdward Thomson <ethomson@edwardthomson.com>2019-01-25 09:06:50 +0000
commit1c3daccf1adffe03efc3e2edab677febbaabda25 (patch)
tree2ea8199262c4f4184180f8b738e7bf19322a16df /fuzzers
parentcc5da0a63de4369b62d8acf0086466df127b20f7 (diff)
downloadlibgit2-1c3daccf1adffe03efc3e2edab677febbaabda25.tar.gz
fuzzers: don't use deprecated types
Diffstat (limited to 'fuzzers')
-rw-r--r--fuzzers/objects_fuzzer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fuzzers/objects_fuzzer.c b/fuzzers/objects_fuzzer.c
index a1001edea..1feff778d 100644
--- a/fuzzers/objects_fuzzer.c
+++ b/fuzzers/objects_fuzzer.c
@@ -25,7 +25,7 @@ int LLVMFuzzerInitialize(int *argc, char ***argv)
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
{
- const git_otype types[] = {
+ const git_object_t types[] = {
GIT_OBJECT_BLOB, GIT_OBJECT_TREE, GIT_OBJECT_COMMIT, GIT_OBJECT_TAG
};
git_object *object = NULL;