We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c763ba commit 8fcd823Copy full SHA for 8fcd823
1 file changed
shared-module/audiomixer/Mixer.c
@@ -161,7 +161,7 @@ static inline uint32_t copy16lsb(uint32_t val) {
161
#else
162
val &= 0x0000ffff;
163
return val | (val << 16);
164
- #endif;
+ #endif
165
}
166
167
static inline uint32_t copy16msb(uint32_t val) {
@@ -170,7 +170,7 @@ static inline uint32_t copy16msb(uint32_t val) {
170
171
val &= 0xffff0000;
172
return val | (val >> 16);
173
174
175
176
#define ALMOST_ONE (MICROPY_FLOAT_CONST(32767.) / 32768)
0 commit comments