From 0c5f0168675d85ad8d1848669d2c103c8580050c Mon Sep 17 00:00:00 2001 From: Szymon Janc Date: Tue, 10 May 2011 12:01:30 +0200 Subject: [PATCH] Remove unused op variable from encode_discover_primary --- attrib/gatt.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/attrib/gatt.c b/attrib/gatt.c index 360218b05..1ed78ecc6 100644 --- a/attrib/gatt.c +++ b/attrib/gatt.c @@ -71,13 +71,11 @@ static guint16 encode_discover_primary(uint16_t start, uint16_t end, { bt_uuid_t prim; guint16 plen; - uint8_t op; bt_uuid16_create(&prim, GATT_PRIM_SVC_UUID); if (uuid == NULL) { /* Discover all primary services */ - op = ATT_OP_READ_BY_GROUP_REQ; plen = enc_read_by_grp_req(start, end, &prim, pdu, len); } else { uint16_t u16; @@ -86,7 +84,6 @@ static guint16 encode_discover_primary(uint16_t start, uint16_t end, int vlen; /* Discover primary service by service UUID */ - op = ATT_OP_FIND_BY_TYPE_REQ; if (uuid->type == BT_UUID16) { u16 = htobs(uuid->value.u16); -- 2.47.3