Add some casting and namespace specifiers to keep MSVC happy

This commit is contained in:
John Emmas 2014-05-06 09:20:03 +01:00
parent 0277c8c8d1
commit 9cf2cf55f5
4 changed files with 11 additions and 10 deletions

View file

@ -420,7 +420,7 @@ PMEXPORT PmError Pm_Poll( PortMidiStream *stream )
return pm_errmsg(err);
}
return !Pm_QueueEmpty(midi->queue);
return (PmError) !Pm_QueueEmpty(midi->queue);
}