summaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
authorSzymon Janc <szymon@janc.net.pl>2012-06-13 22:49:21 +0200
committerLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2012-06-14 14:31:49 +0300
commit9cbfeb7de037b974f0c52779d8ba8f898ce1bfcd (patch)
tree68bf1f1fc26f8b2cf0b9dcd7378f7712cc128ec9 /client
parent02cd2bda600efa71da6c128807e9c99ea8a1dd6b (diff)
downloadobexd-9cbfeb7de037b974f0c52779d8ba8f898ce1bfcd.tar.gz
Fix dead assignments
Values stored are never read.
Diffstat (limited to 'client')
-rw-r--r--client/pbap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/pbap.c b/client/pbap.c
index 4428c14..48dbac1 100644
--- a/client/pbap.c
+++ b/client/pbap.c
@@ -520,7 +520,7 @@ static DBusMessage *pull_vcard_listing(struct pbap_data *pbap,
p = fill_apparam(p, &count, MAXLISTCOUNT_TAG, MAXLISTCOUNT_LEN);
offset = GUINT16_TO_BE(offset);
- p = fill_apparam(p, &offset, LISTSTARTOFFSET_TAG, LISTSTARTOFFSET_LEN);
+ fill_apparam(p, &offset, LISTSTARTOFFSET_TAG, LISTSTARTOFFSET_LEN);
request = pending_request_new(pbap, message);