From 9cbfeb7de037b974f0c52779d8ba8f898ce1bfcd Mon Sep 17 00:00:00 2001 From: Szymon Janc Date: Wed, 13 Jun 2012 22:49:21 +0200 Subject: Fix dead assignments Values stored are never read. --- client/pbap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'client') 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); -- cgit v1.2.1