caif: Add missing braces to multiline if in cfctrl_linkup_request
authorDave Jones <davej@redhat.com>
Thu, 5 Sep 2013 04:11:19 +0000 (00:11 -0400)
committerDavid S. Miller <davem@davemloft.net>
Thu, 5 Sep 2013 18:31:02 +0000 (14:31 -0400)
The indentation here implies this was meant to be a multi-line if.

Introduced several years back in commit c85c2951d4da1236e32f1858db418221e624aba5
("caif: Handle dev_queue_xmit errors.")

Signed-off-by: Dave Jones <davej@fedoraproject.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/caif/cfctrl.c

index 2bd4b58..0f45522 100644 (file)
@@ -293,9 +293,10 @@ int cfctrl_linkup_request(struct cflayer *layer,
 
                count = cfctrl_cancel_req(&cfctrl->serv.layer,
                                                user_layer);
-               if (count != 1)
+               if (count != 1) {
                        pr_err("Could not remove request (%d)", count);
                        return -ENODEV;
+               }
        }
        return 0;
 }