Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of USBDevice by
Revision 61:a0613937ae07, committed 2016-01-27
- Comitter:
- crazyafrican
- Date:
- Wed Jan 27 00:37:14 2016 +0000
- Parent:
- 60:7662d9ed5011
- Commit message:
- fixed explicit conversion warning
Changed in this revision
USBAudio/USBAudio.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/USBAudio/USBAudio.cpp Fri Dec 25 22:51:12 2015 +0000 +++ b/USBAudio/USBAudio.cpp Wed Jan 27 00:37:14 2016 +0000 @@ -115,7 +115,7 @@ float USBAudio::getVolume() { - return (mute) ? 0.0 : volume; + return (mute) ? 0.0f : volume; }