Skip to content

Commit d490eef

Browse files
authored
Merge pull request #259 from dbuezas/fix-elif
Fix dangling #elif in main.cpp
2 parents c401741 + def3ea3 commit d490eef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lgt8f/cores/lgt8f/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ void lgt8fx8x_clk_src()
165165
CLKPR = 0x06;
166166
#elif F_DIV <= 128
167167
CLKPR = 0x07;
168-
#elif
168+
#else
169169
CLKPR = 0x08;
170170
#endif
171171
#endif

0 commit comments

Comments
 (0)