Skip to content

Commit 625cf45

Browse files
authored
Update packages/react-native-audio-api/common/cpp/core/AudioBus.cpp
1 parent 8e68895 commit 625cf45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/react-native-audio-api/common/cpp/core/AudioBus.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ void AudioBus::normalize() {
125125
}
126126

127127
void AudioBus::scale(float value) {
128-
for (auto it = channels_.begin(); it != channels_.end(); it += 1) {
128+
for (auto it = channels_.begin(); it != channels_.end(); ++it) {
129129
it->get()->scale(value);
130130
}
131131
}

0 commit comments

Comments
 (0)