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

Commit 267c39c9 authored by Roel Kluin's avatar Roel Kluin Committed by Greg Kroah-Hartman
Browse files

Staging: v56655: add missing parentheses (in comment)



`!' has a higher precedence than `&' so parentheses are required.

Signed-off-by: default avatarRoel Kluin <roel.kluin@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 9d4682d0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1472,7 +1472,7 @@ if((wrq->flags & IW_ENCODE_DISABLED)==0){
		if ( index < 4 ) {
		    pDevice->byKeyIndex = index;
		}
		else if(!wrq->flags & IW_ENCODE_MODE) {
		else if(!(wrq->flags & IW_ENCODE_MODE)) {
				rc = -EINVAL;
				return rc;
	    }