Fix: extraneous parentheses

This commit is contained in:
Rin Cat (鈴猫)
2021-12-04 08:45:14 -05:00
parent 16223935bb
commit 96ec215d23
4 changed files with 4 additions and 4 deletions

View File

@@ -3070,7 +3070,7 @@ int rtw_mp_link(struct net_device *dev,
/* tmp[0],[1],[2] */
/* txdata,00e04c871200........... */
if (strcmp(tmp[0], "txdata") == 0) {
if ((tmp[1] == NULL)) {
if (tmp[1] == NULL) {
err = -EINVAL;
goto exit;
}