mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-28 02:30:05 +00:00
MSVC warning fix.
This commit is contained in:
parent
8dceb3471a
commit
3833c10f26
1 changed files with 1 additions and 1 deletions
|
|
@ -994,7 +994,7 @@ private:
|
|||
if (asioObject == nullptr)
|
||||
return "No Driver";
|
||||
|
||||
const bool initOk = (bool) asioObject->init (juce_messageWindowHandle);
|
||||
const bool initOk = !! asioObject->init (juce_messageWindowHandle);
|
||||
String driverError;
|
||||
|
||||
// Get error message if init() failed, or if it's a buggy Denon driver,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue