Skip to content

Commit 46ca685

Browse files
committed
Fix build failure
IS_APPLE_TVOS macro is always defined but we must check its value of (IS_APPLE_TVOS) instead of just whether it's defined. Co-Authored-By: [email protected]
1 parent 59d4626 commit 46ca685

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fuzztest/internal/subprocess.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ RunResults RunCommand(
316316
FUZZTEST_INTERNAL_CHECK(
317317
false,
318318
"Subprocess library not implemented on older Android NDK versions yet");
319-
#elif defined(IS_APPLE_TVOS)
319+
#elif IS_APPLE_TVOS
320320
FUZZTEST_INTERNAL_CHECK(
321321
false, "Subprocess library not implemented on Apple tvOS yet");
322322
#else

0 commit comments

Comments
 (0)