From 8349543732dbf82b01916c321708850ef864e985 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Sat, 5 Jul 2014 18:56:20 +0200 Subject: [PATCH] style --- software/libbase/exception.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/software/libbase/exception.c b/software/libbase/exception.c index 0b3bae37..73454e32 100644 --- a/software/libbase/exception.c +++ b/software/libbase/exception.c @@ -7,7 +7,7 @@ void isr(void); void exception_handler(unsigned long vect, unsigned long *sp); void exception_handler(unsigned long vect, unsigned long *sp) { - if ((vect & 0xf00) == EXTERNAL_IRQ) { + if((vect & 0xf00) == EXTERNAL_IRQ) { isr(); } else { /* Unhandled exception */ -- 2.30.2