Skip to content

Commit 1b55dc9

Browse files
duk-37tru
authored andcommitted
Fix buildbot failure caused by D157623
GCC doesn't like the implicit conversion here. (cherry picked from commit f11f90d)
1 parent 28d81a2 commit 1b55dc9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/tools/llvm-readobj/COFFDumper.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -944,7 +944,7 @@ void COFFDumper::printCOFFLoadConfig() {
944944
// RVA of each entry in the table. As of writing only a 1-byte extra flag
945945
// has been defined.
946946
uint32_t Stride = Tables.GuardFlags >> 28;
947-
PrintExtraCB PrintExtra = Stride == 1 ? PrintGuardFlags : nullptr;
947+
PrintExtraCB PrintExtra = Stride == 1 ? +PrintGuardFlags : nullptr;
948948

949949
if (Tables.GuardFidTableVA) {
950950
ListScope LS(W, "GuardFidTable");

0 commit comments

Comments
 (0)