Skip to content

Commit 1c3dacc

Browse files
committed
fuzzers: don't use deprecated types
1 parent cc5da0a commit 1c3dacc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fuzzers/objects_fuzzer.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ int LLVMFuzzerInitialize(int *argc, char ***argv)
2525

2626
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
2727
{
28-
const git_otype types[] = {
28+
const git_object_t types[] = {
2929
GIT_OBJECT_BLOB, GIT_OBJECT_TREE, GIT_OBJECT_COMMIT, GIT_OBJECT_TAG
3030
};
3131
git_object *object = NULL;

0 commit comments

Comments
 (0)