Skip to content

Commit cbb1d06

Browse files
committed
Speculative build fix for codeview type dumper API change
llvm-svn: 271344
1 parent 892fa7d commit cbb1d06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/tools/llvm-pdbdump/fuzzer/llvm-pdbdump-fuzzer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ extern "C" void LLVMFuzzerTestOneInput(uint8_t *data, size_t size) {
2828
StringRef((const char *)data, size), "", false);
2929

3030
ScopedPrinter P(nulls());
31-
codeview::CVTypeDumper TD(P, false);
31+
codeview::CVTypeDumper TD(&P, false);
3232

3333
std::unique_ptr<pdb::PDBFile> File(new pdb::PDBFile(std::move(Buff)));
3434
if (auto E = File->parseFileHeaders()) {

0 commit comments

Comments
 (0)