Clean up style

This commit is contained in:
Robbert van der Helm
2021-05-05 19:04:49 +02:00
parent 000fa04b7b
commit ce668ec022
3 changed files with 3 additions and 3 deletions
@@ -179,7 +179,7 @@ Vst3PluginProxyImpl::process(Steinberg::Vst::ProcessData& data) {
// We'll synchronize the scheduling priority of the audio thread on the Wine
// plugin host with that of the host's audio thread every once in a while
std::optional<int> new_realtime_priority = std::nullopt;
time_t now = std::time(nullptr);
time_t now = time(nullptr);
if (now > last_audio_thread_priority_synchronization +
audio_thread_priority_synchronization_interval) {
new_realtime_priority = get_realtime_priority();