]> Pileus Git - ~andy/linux/commitdiff
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 2bd4b58f437202113676ab6984bd81b9cbc5c9d1..0f455227da8320bdcfe42daa61673701b25224fa 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;
 }