Skip to content

Commit 7d18497

Browse files
committed
copyAll
1 parent 772bee1 commit 7d18497

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
File renamed without changes.

src/AudioTools/AudioCopy.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,13 +176,13 @@ class StreamCopyT {
176176
}
177177

178178
/// copies all data
179-
void copyAll(int delay=5){
179+
void copyAll(int delayMs=5){
180180
LOGD(LOG_METHOD);
181181
if (from==nullptr || to == nullptr)
182182
return;
183183

184184
while(copy()){
185-
delay(delay);
185+
delay(delayMs);
186186
}
187187
}
188188

0 commit comments

Comments
 (0)