Skip to content

Commit 8fcd823

Browse files
committed
Remove extra tokens from #endif directives
1 parent 9c763ba commit 8fcd823

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

shared-module/audiomixer/Mixer.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ static inline uint32_t copy16lsb(uint32_t val) {
161161
#else
162162
val &= 0x0000ffff;
163163
return val | (val << 16);
164-
#endif;
164+
#endif
165165
}
166166

167167
static inline uint32_t copy16msb(uint32_t val) {
@@ -170,7 +170,7 @@ static inline uint32_t copy16msb(uint32_t val) {
170170
#else
171171
val &= 0xffff0000;
172172
return val | (val >> 16);
173-
#endif;
173+
#endif
174174
}
175175

176176
#define ALMOST_ONE (MICROPY_FLOAT_CONST(32767.) / 32768)

0 commit comments

Comments
 (0)