Skip to content

Commit 134ebe7

Browse files
committed
typo - missing semicolon
1 parent 528a25e commit 134ebe7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cores/arduino/SERCOM.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ class SERCOM
248248
uint32_t getFreqRef(void) { return freqRef; };
249249
#else
250250
// The equivalent SAMD21 dummy functions...
251-
void setClockSource(int8_t idx, SercomClockSource src, bool core) { (void)idx; (void)src; (void)core };
251+
void setClockSource(int8_t idx, SercomClockSource src, bool core) { (void)idx; (void)src; (void)core; };
252252
SercomClockSource getClockSource(void) { return SERCOM_CLOCK_SOURCE_FCPU; };
253253
uint32_t getFreqRef(void) { return F_CPU; };
254254
#endif

0 commit comments

Comments
 (0)