ftdipp_mpsse: fix message in setClkFreq

This commit is contained in:
Gwenhael Goavec-Merou 2026-03-13 07:48:14 +01:00
parent bb37f1ed4d
commit c7f65d20b5
1 changed files with 1 additions and 1 deletions

View File

@ -402,7 +402,7 @@ int FTDIpp_MPSSE::setClkFreq(uint32_t clkHZ)
}
if (_clkHZ > base_freq / 2) {
printWarn("Jtag probe limited to %d MHz" + std::to_string(base_freq / 2));
printWarn("Jtag probe limited to " + std::to_string(base_freq / 2) + " Hz");
_clkHZ = base_freq / 2;
}