staging: rtl8192e: Replace ?: with max
All get_key implementations return either -1 or small buffers, so cast int->u16 is not a problem. Signed-off-by: Mateusz Kulikowski <mateusz.kulikowski@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
a5c06ad83b
commit
622fd4942d
|
@ -510,7 +510,8 @@ int rtllib_wx_get_encode(struct rtllib_device *ieee,
|
|||
return 0;
|
||||
}
|
||||
len = crypt->ops->get_key(keybuf, SCM_KEY_LEN, NULL, crypt->priv);
|
||||
erq->length = (len >= 0 ? len : 0);
|
||||
|
||||
erq->length = max(len, 0);
|
||||
|
||||
erq->flags |= IW_ENCODE_ENABLED;
|
||||
|
||||
|
|
Loading…
Reference in New Issue