From 5e4be6d6bb81854d357a8d58fc554b59d2c2582f Mon Sep 17 00:00:00 2001 From: Cristian Maglie <c.maglie@arduino.cc> Date: Fri, 21 Nov 2014 17:20:54 +0100 Subject: [PATCH] small indent fix --- cores/arduino/main.cpp | 6 +++--- cores/arduino/wiring.c | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/cores/arduino/main.cpp b/cores/arduino/main.cpp index 838bb996..55eef9e9 100644 --- a/cores/arduino/main.cpp +++ b/cores/arduino/main.cpp @@ -27,9 +27,9 @@ int main( void ) init(); delay(1); -#if defined(USBCON) - USBDevice.init(); - USBDevice.attach(); +#if defined(USBCON) + USBDevice.init(); + USBDevice.attach(); #endif setup(); diff --git a/cores/arduino/wiring.c b/cores/arduino/wiring.c index 02158b7d..e8dc0e9e 100644 --- a/cores/arduino/wiring.c +++ b/cores/arduino/wiring.c @@ -85,7 +85,7 @@ void init( void ) PM->APBCMASK.reg |= PM_APBCMASK_ADC | PM_APBCMASK_DAC ; // Setup all pins (digital and analog) in INPUT mode (default is nothing) - for ( ul = 0 ; ul < NUM_DIGITAL_PINS ; ul++ ) + for ( ul = 0 ; ul < NUM_DIGITAL_PINS ; ul++ ) { pinMode( ul, INPUT ) ; } -- GitLab