Skip to content

Commit

Permalink
efi/printf: remove unneeded semicolon
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Tian Tao authored and Ard Biesheuvel committed Sep 16, 2020
1 parent 762cd28 commit 5c4c30f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/firmware/efi/libstub/vsprintf.c
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ char *number(char *end, unsigned long long num, int base, char locase)
break;
default:
unreachable();
};
}

return end;
}
Expand Down

0 comments on commit 5c4c30f

Please sign in to comment.