diff --git a/src/ftdipp_mpsse.cpp b/src/ftdipp_mpsse.cpp index 3deb7da..974c3a1 100644 --- a/src/ftdipp_mpsse.cpp +++ b/src/ftdipp_mpsse.cpp @@ -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; }