diff --git a/modules/juce_audio_plugin_client/VST3/juce_VST3ModuleInfo.h b/modules/juce_audio_plugin_client/VST3/juce_VST3ModuleInfo.h index ce11ecbef9..4a2cab11f9 100644 --- a/modules/juce_audio_plugin_client/VST3/juce_VST3ModuleInfo.h +++ b/modules/juce_audio_plugin_client/VST3/juce_VST3ModuleInfo.h @@ -103,12 +103,11 @@ public: { str << "\"" << std::hex - << std::setw (2) << std::setfill ('0') << std::uppercase; for (auto byte : oldIds[i]) - str << (int) byte; + str << std::setw (2) << (int) byte; str.clear(); str << "\"";