sim: Remove self-assignments

Clang generates a warning if there is a redundant self-assignment
("-Wself-assign").  On the default configuration, it causes a build failure
(unless "--disable-werror" is specified).

This commit removes redundant self-assignments from two files.
This commit is contained in:
Tsukasa OI
2022-09-25 08:42:02 +00:00
committed by Andrew Burgess
parent e9a433bf19
commit 5294d882eb
2 changed files with 0 additions and 4 deletions

View File

@ -335,7 +335,6 @@ split_find_device (struct hw *current,
else if (strncmp (spec->path, "./", strlen ("./")) == 0) else if (strncmp (spec->path, "./", strlen ("./")) == 0)
{ {
/* cd ./... */ /* cd ./... */
current = current;
spec->path += strlen ("./"); spec->path += strlen ("./");
} }
else if (strncmp (spec->path, "../", strlen ("../")) == 0) else if (strncmp (spec->path, "../", strlen ("../")) == 0)
@ -348,7 +347,6 @@ split_find_device (struct hw *current,
else if (strcmp (spec->path, ".") == 0) else if (strcmp (spec->path, ".") == 0)
{ {
/* cd . */ /* cd . */
current = current;
spec->path += strlen ("."); spec->path += strlen (".");
} }
else if (strcmp (spec->path, "..") == 0) else if (strcmp (spec->path, "..") == 0)

View File

@ -306,7 +306,6 @@ split_find_device(device *current,
} }
else if (strncmp(spec->path, "./", strlen("./")) == 0) { else if (strncmp(spec->path, "./", strlen("./")) == 0) {
/* cd ./... */ /* cd ./... */
current = current;
spec->path += strlen("./"); spec->path += strlen("./");
} }
else if (strncmp(spec->path, "../", strlen("../")) == 0) { else if (strncmp(spec->path, "../", strlen("../")) == 0) {
@ -317,7 +316,6 @@ split_find_device(device *current,
} }
else if (strcmp(spec->path, ".") == 0) { else if (strcmp(spec->path, ".") == 0) {
/* cd . */ /* cd . */
current = current;
spec->path += strlen("."); spec->path += strlen(".");
} }
else if (strcmp(spec->path, "..") == 0) { else if (strcmp(spec->path, "..") == 0) {