Commit 31e9dc4
udf: remove redundant assignment of variable etype
Variable etype is being assigned a value that is never read. The
variable and assignment are redundant and can be removed.
Cleans up clang scan build warning:
fs/udf/super.c:2485:10: warning: Although the value stored to 'etype'
is used in the enclosing expression, the value is never actually read
from 'etype' [deadcode.DeadStores]
Link: https://lore.kernel.org/r/20220307152149.139045-1-colin.i.king@gmail.com
Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Signed-off-by: Jan Kara <jack@suse.cz>1 parent eb103a5 commit 31e9dc4
1 file changed
Lines changed: 1 addition & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
2474 | 2474 | | |
2475 | 2475 | | |
2476 | 2476 | | |
2477 | | - | |
2478 | 2477 | | |
2479 | 2478 | | |
2480 | 2479 | | |
2481 | 2480 | | |
2482 | 2481 | | |
2483 | 2482 | | |
2484 | 2483 | | |
2485 | | - | |
| 2484 | + | |
2486 | 2485 | | |
2487 | 2486 | | |
2488 | 2487 | | |
| |||
0 commit comments