We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6646cf5 commit ed1edd2Copy full SHA for ed1edd2
src/Audio.h
@@ -377,7 +377,7 @@ class Audio : private AudioBuffer{
377
for (int i = 0; i < numBytes; i++) {
378
result += *(base + i) << (numBytes -i - 1) * shiftLeft;
379
}
380
- if(result > SIZE_MAX) {log_e("range overflow"), result = 0;}; // overflow
+ if(result > SIZE_MAX) {log_e("range overflow"); result = 0;} // overflow
381
return (size_t)result;
382
383
0 commit comments