1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-29 08:21:18 +01:00

fixed old-style-declaration warning

board_init.c:7:1: warning: 'static' is not at beginning of declaration
[-Wold-style-declaration]
This commit is contained in:
Christian Mehlis 2013-07-18 16:06:02 +02:00
parent c401abe333
commit 4997e61566

View File

@ -4,7 +4,7 @@
#include "msp430.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) {