Skip to content

Commit 42e386d

Browse files
committed
codal_port/modaudio: Update to build with latest micropython.
Signed-off-by: Damien George <[email protected]>
1 parent abc51ec commit 42e386d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/codal_port/modaudio.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,7 @@ MP_DEFINE_CONST_OBJ_TYPE(
533533
);
534534

535535
microbit_audio_frame_obj_t *microbit_audio_frame_make_new(size_t size, uint16_t rate) {
536-
microbit_audio_frame_obj_t *res = m_new_obj_var(microbit_audio_frame_obj_t, uint8_t, size);
536+
microbit_audio_frame_obj_t *res = m_new_obj_var(microbit_audio_frame_obj_t, data, uint8_t, size);
537537
res->base.type = &microbit_audio_frame_type;
538538
res->alloc_size = size;
539539
res->used_size = 0;

0 commit comments

Comments
 (0)