Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/EionRobb/pidgin-opensteamworks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEion Robb <eion@robbmob.com>2016-04-08 03:47:11 +0300
committerEion Robb <eion@robbmob.com>2016-04-08 03:47:11 +0300
commit92ad2d3593649fe1d32c6dffd061f0c980af92ab (patch)
tree3811cca3ee98a70504e8052aa11097ab16db51bf /steam-mobile/libsteam.c
parentd6ed4654c22e25244787a3f96dccbecf7d0a3f52 (diff)
parent440427abaf619a243d79d5f6edcb358f33be07b4 (diff)
Merge pull request #142 from doctorlard/lint-1
Lint: unused variables, socket write error checks.
Diffstat (limited to 'steam-mobile/libsteam.c')
-rw-r--r--steam-mobile/libsteam.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/steam-mobile/libsteam.c b/steam-mobile/libsteam.c
index 46483ba..8c301cb 100644
--- a/steam-mobile/libsteam.c
+++ b/steam-mobile/libsteam.c
@@ -984,8 +984,8 @@ steam_get_conversations_cb(SteamAccount *sa, JsonObject *obj, gpointer user_data
JsonObject *session = json_array_get_object_element(message_sessions, index);
gint64 accountid_friend = json_object_get_int_member(session, "accountid_friend");
gint64 last_message = json_object_get_int_member(session, "last_message");
- gint64 last_view = json_object_get_int_member(session, "last_view");
- gint64 unread_message_count = json_object_get_int_member(session, "unread_message_count");
+ //gint64 last_view = json_object_get_int_member(session, "last_view");
+ //gint64 unread_message_count = json_object_get_int_member(session, "unread_message_count");
if (last_message > last_message_stored_timestamp) {
steam_get_offline_history(sa, steam_accountid_to_steamid(accountid_friend), last_message_stored_timestamp);