Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c8cbec6b authored by Roel Kluin's avatar Roel Kluin Committed by Jens Axboe
Browse files

paride/pg.c: xs(): &&/|| confusion



&&/|| confusion

Signed-off-by: default avatarRoel Kluin <roel.kluin@gmail.com>
Cc: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarJens Axboe <jens.axboe@oracle.com>
parent a60e78e5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -422,7 +422,7 @@ static void xs(char *buf, char *targ, int len)

	for (k = 0; k < len; k++) {
		char c = *buf++;
		if (c != ' ' || c != l)
		if (c != ' ' && c != l)
			l = *targ++ = c;
	}
	if (l == ' ')