Skip to content

Commit 5c4c30f

Browse files
Tian Taoardbiesheuvel
authored andcommitted
efi/printf: remove unneeded semicolon
Fix the warning below. efi/libstub/vsprintf.c:135:2-3: Unneeded semicolon Signed-off-by: Tian Tao <tiantao6@hisilicon.com> Acked-by: Arvind Sankar <nivedita@alum.mit.edu> Link: https://lore.kernel.org/r/1599633872-36784-1-git-send-email-tiantao6@hisilicon.com Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
1 parent 762cd28 commit 5c4c30f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/firmware/efi/libstub/vsprintf.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ char *number(char *end, unsigned long long num, int base, char locase)
135135
break;
136136
default:
137137
unreachable();
138-
};
138+
}
139139

140140
return end;
141141
}

0 commit comments

Comments
 (0)