From: Colin Ian King <colin.king@xxxxxxxxxxxxx> The check for variable l being a space character is always false, l can never be a space character. The check is redundant and can be removed. Addresses-Coverity: ("Logically dead code") Signed-off-by: Colin Ian King <colin.king@xxxxxxxxxxxxx> --- drivers/block/paride/pg.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/block/paride/pg.c b/drivers/block/paride/pg.c index 3b5882bfb736..2f7aa8521395 100644 --- a/drivers/block/paride/pg.c +++ b/drivers/block/paride/pg.c @@ -429,8 +429,6 @@ static void xs(char *buf, char *targ, int len) if (c != ' ' && c != l) l = *targ++ = c; } - if (l == ' ') - targ--; *targ = '\0'; } -- 2.31.1