mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-11-14 10:15:13 +00:00
ASN.1: Remove unnecessary shadowed local variable
Remove an unnecessary shadowed local variable (start). It was used only once, with the same value it was started before the if block. Signed-off-by: Leonardo Bras <leobras.c@gmail.com> Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
This commit is contained in:
parent
7d0ea25242
commit
9e1e819433
1 changed files with 1 additions and 1 deletions
|
|
@ -413,7 +413,7 @@ static void tokenise(char *buffer, char *end)
|
||||||
|
|
||||||
/* Handle string tokens */
|
/* Handle string tokens */
|
||||||
if (isalpha(*p)) {
|
if (isalpha(*p)) {
|
||||||
const char **dir, *start = p;
|
const char **dir;
|
||||||
|
|
||||||
/* Can be a directive, type name or element
|
/* Can be a directive, type name or element
|
||||||
* name. Find the end of the name.
|
* name. Find the end of the name.
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue