fuzzers: don't use deprecated types

This commit is contained in:
Edward Thomson
2019-01-23 09:51:50 +00:00
parent cc5da0a63d
commit 1c3daccf1a

View File

@@ -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;