Skip to content

Commit

Permalink
ARC: dw2 unwind: Fix trailing semicolon
Browse files Browse the repository at this point in the history
The trailing semicolon is an empty statement that does no operation.
Removing it since it doesn't do anything.

Signed-off-by: Luis de Bethencourt <[email protected]>
Signed-off-by: Vineet Gupta <[email protected]>
  • Loading branch information
luisbg authored and vineetgarc committed Jan 23, 2018
1 parent 8ff3afc commit 7d82c5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/arc/kernel/unwind.c
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ static void init_unwind_hdr(struct unwind_table *table,
return;

ret_err:
panic("Attention !!! Dwarf FDE parsing errors\n");;
panic("Attention !!! Dwarf FDE parsing errors\n");
}

#ifdef CONFIG_MODULES
Expand Down

0 comments on commit 7d82c5f

Please sign in to comment.