Skip to content
Snippets Groups Projects
Commit 4997e615 authored by Christian Mehlis's avatar Christian Mehlis
Browse files

fixed old-style-declaration warning

board_init.c:7:1: warning: 'static' is not at beginning of declaration
[-Wold-style-declaration]
parent c401abe3
No related branches found
No related tags found
No related merge requests found
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
#include "msp430.h" #include "msp430.h"
#include "debug.h" #include "debug.h"
volatile static uint32_t __msp430_cpu_speed = MSP430_INITIAL_CPU_SPEED; static volatile uint32_t __msp430_cpu_speed = MSP430_INITIAL_CPU_SPEED;
/*---------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/
static uint8_t calc_umctl(uint16_t br) { static uint8_t calc_umctl(uint16_t br) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment