Skip to content

Commit ab843d4

Browse files
committed
Merge branch 'main' of https://github.com/pschatzmann/arduino-libhelix into main
2 parents 5c7467b + becb0f5 commit ab843d4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/AACDecoderHelix.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class AACDecoderHelix : public CommonHelix {
3636
}
3737

3838
~AACDecoderHelix(){
39-
MP3FreeDecoder(decoder);
39+
AACFreeDecoder(decoder);
4040
}
4141

4242

src/CommonHelix.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ class CommonHelix {
176176
memmove(frame_buffer+buffer_size, in_ptr, process_size);
177177
buffer_size += process_size;
178178
if (buffer_size>maxFrameSize()){
179-
LOG(Error, "Increase MAX_FRAME_SIZE > %ld", buffer_size);
179+
LOG(Error, "Increase MAX_FRAME_SIZE > %zu", buffer_size);
180180
}
181181
assert(buffer_size<=maxFrameSize());
182182

0 commit comments

Comments
 (0)