Skip to content

Commit ed1edd2

Browse files
authored
ESP32 Webradio Error #414
typo
1 parent 6646cf5 commit ed1edd2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Audio.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@ class Audio : private AudioBuffer{
377377
for (int i = 0; i < numBytes; i++) {
378378
result += *(base + i) << (numBytes -i - 1) * shiftLeft;
379379
}
380-
if(result > SIZE_MAX) {log_e("range overflow"), result = 0;}; // overflow
380+
if(result > SIZE_MAX) {log_e("range overflow"); result = 0;} // overflow
381381
return (size_t)result;
382382
}
383383

0 commit comments

Comments
 (0)