qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [RFC, PATCH 1/2] bt-l2cap: fix if statement with empty body


From: Blue Swirl
Subject: [Qemu-devel] [RFC, PATCH 1/2] bt-l2cap: fix if statement with empty body, spotted by clang
Date: Sun, 18 Apr 2010 11:51:46 +0300

Fix clang error:
  CC    bt-l2cap.o
/src/qemu/hw/bt-l2cap.c:1000:41: error: if statement has empty body
[-Wempty-body]
            /* TODO: Signal an error? */;

This means that l2cap_sframe_in() may now get called.

Signed-off-by: Blue Swirl <address@hidden>
---
 hw/bt-l2cap.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/hw/bt-l2cap.c b/hw/bt-l2cap.c
index 70d731e..7e2f668 100644
--- a/hw/bt-l2cap.c
+++ b/hw/bt-l2cap.c
@@ -996,10 +996,10 @@ static void l2cap_iframe_in(struct l2cap_chan_s
*ch, uint16_t cid,
         l2cap_rexmit_enable(ch, !(hdr->data[0] >> 7));

     if (hdr->data[0] & 1) {
-        if (len != 4)
-            /* TODO: Signal an error? */;
+        if (len != 4) {
+            /* TODO: Signal an error? */
             return;
-
+        }
         return l2cap_sframe_in(ch, le16_to_cpup((void *) hdr->data));
     }

-- 
1.6.2.4




reply via email to

[Prev in Thread] Current Thread [Next in Thread]