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>
This commit is contained in:
Tian Tao 2020-09-09 14:44:32 +08:00 committed by Ard Biesheuvel
parent 762cd288fc
commit 5c4c30f40c
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ char *number(char *end, unsigned long long num, int base, char locase)
break;
default:
unreachable();
};
}
return end;
}