Skip to content

Commit 8349543

Browse files
committedJul 5, 2014
style
1 parent 2bb821c commit 8349543

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎software/libbase/exception.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ void isr(void);
77
void exception_handler(unsigned long vect, unsigned long *sp);
88
void exception_handler(unsigned long vect, unsigned long *sp)
99
{
10-
if ((vect & 0xf00) == EXTERNAL_IRQ) {
10+
if((vect & 0xf00) == EXTERNAL_IRQ) {
1111
isr();
1212
} else {
1313
/* Unhandled exception */

0 commit comments

Comments
 (0)
Please sign in to comment.