Skip to content

Commit

Permalink
Merge pull request #1336 from lioncash/fmt
Browse files Browse the repository at this point in the history
ALUOps: Fix left-over printf specifier in fmt log
  • Loading branch information
Sonicadvance1 authored Nov 3, 2021
2 parents e034364 + 31030e6 commit aa1c47c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ DEF_OP(Mul) {
case 8:
mul(Dst, GetReg<RA_64>(Op->Header.Args[0].ID()), GetReg<RA_64>(Op->Header.Args[1].ID()));
break;
default: LOGMAN_MSG_A_FMT("Unknown Mul size: %d", OpSize);
default: LOGMAN_MSG_A_FMT("Unknown Mul size: {}", OpSize);
}
}

Expand Down

0 comments on commit aa1c47c

Please sign in to comment.