Skip to content

Commit

Permalink
Avoid use of printf from commit db80f693
Browse files Browse the repository at this point in the history
  • Loading branch information
dahlstrom-g committed Jul 30, 2023
1 parent 24302e7 commit 50e5370
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions third_party/skia/src/sksl/SkSLCompiler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,11 @@ static void grab_intrinsics(std::vector<std::unique_ptr<ProgramElement>>* src,
break;
}
default:
#if defined(STARBOARD)
SbLogRaw("unsupported include file element\n");
#else
printf("unsupported include file element\n");
#endif // defined(STARBOARD)
SkASSERT(false);
}
}
Expand Down

0 comments on commit 50e5370

Please sign in to comment.