diff --git a/src/SuperColliderEngine.cpp b/src/SuperColliderEngine.cpp index 7f9bdb2..f796f09 100644 --- a/src/SuperColliderEngine.cpp +++ b/src/SuperColliderEngine.cpp @@ -331,11 +331,11 @@ void SC_VcvPrototypeClient::evaluateProcessBlock(ProcessBlock* block) noexcept { if (gmax < ticks) { gmax = ticks; - printf("MAX TIME %lld\n", ticks); + std::printf("MAX TIME %lld\n", ticks); } if (timesIndex == 0) { - printf("AVG TIME %lld\n", std::accumulate(std::begin(times), std::end(times), 0ull) / nTimes); + std::printf("AVG TIME %lld\n", std::accumulate(std::begin(times), std::end(times), 0ull) / nTimes); } #endif }