Skip to content

Commit f381d6e

Browse files
committed
Removed unused variable
1 parent cc0a278 commit f381d6e

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

audionormalizer.c

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ void normalize(float* samples, unsigned int size) {
2020
}
2121

2222
for (unsigned int i = 0 ; i < size ; i++) {
23-
float o = samples[i];
2423
float value = samples[i] / rms;
2524
if (value < -1.0) {
2625
samples[i] = -1.0;

0 commit comments

Comments
 (0)