summaryrefslogtreecommitdiffhomepage
path: root/digital/beacon
diff options
context:
space:
mode:
authorFlorent Duchon2012-05-16 17:24:31 +0200
committerFlorent Duchon2012-05-16 17:43:10 +0200
commitf79e9854b9aa5dd4099facb036c5e6845c6e2447 (patch)
treeffb5f2c4e146118b64f5e47f59c5fcf74f873c56 /digital/beacon
parentc076c82d5952f52488561858ff0614fc627ff23e (diff)
digital/beacon: add {} to an else
Diffstat (limited to 'digital/beacon')
-rw-r--r--digital/beacon/src/codewheel.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/digital/beacon/src/codewheel.c b/digital/beacon/src/codewheel.c
index 235643f4..205c2e2b 100644
--- a/digital/beacon/src/codewheel.c
+++ b/digital/beacon/src/codewheel.c
@@ -108,5 +108,7 @@ ISR(TIMER3_COMPA_vect)
codewheel_set_state(CODEWHEEL_REBASED);
}
else
- OCR3A = CODEWHEEL_CPR;
+ {
+ OCR3A = CODEWHEEL_CPR;
+ }
}