8000 Fix format · tlyu/circuitpython@5106449 · GitHub
[go: up one dir, main page]

Skip to content
Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 5106449

Browse files
authored
Fix format
1 parent a9e73f4 commit 5106449

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ports/raspberrypi/audio_dma.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ STATIC size_t audio_dma_convert_samples(audio_dma_t *dma, uint8_t *input, uint32
122122
// Not currently used, but might be in the future.
123123
mp_raise_RuntimeError(MP_ERROR_TEXT("Audio conversion not implemented"));
124124
}
125-
if (dma->swap_channel){
125+
if (dma->swap_channel) {
126126
// Loop for swapping left and right channels
127127
for (uint32_t i = 0; i < out_i; i += 2) {
128128
uint16_t temp = ((uint16_t *)output)[i];

0 commit comments

Comments
 (0)
0