Changeset 8519f45
- Timestamp:
- 2015-01-26T02:43:34Z (10 years ago)
- Branches:
- master
- Children:
- be1efa3
- Parents:
- 95e17fc
- git-author:
- dequis <dx@…> (18-01-15 05:18:40)
- git-committer:
- dequis <dx@…> (26-01-15 02:43:34)
- Location:
- protocols/oscar
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/oscar/chat.c
r95e17fc r8519f45 67 67 */ 68 68 for (i = 0; i < sizeof(ckstr); i++) 69 aimutil_put8(ckstr+i, (guint8) rand()); 69 (void) aimutil_put8(ckstr+i, (guint8) rand()); 70 70 71 71 72 cookie = aim_mkcookie(ckstr, AIM_COOKIETYPE_CHAT, NULL); … … 228 229 */ 229 230 for (i = 0; i < sizeof(ckstr); i++) 230 aimutil_put8(ckstr, (guint8) rand());231 (void) aimutil_put8(ckstr, (guint8) rand()); 231 232 232 233 /* XXX should be uncached by an unwritten 'invite accept' handler */ -
protocols/oscar/tlv.c
r95e17fc r8519f45 181 181 guint8 v8[1]; 182 182 183 aimutil_put8(v8, v);183 (void) aimutil_put8(v8, v); 184 184 185 185 return aim_addtlvtochain_raw(list, t, 1, v8); … … 199 199 guint8 v16[2]; 200 200 201 aimutil_put16(v16, v);201 (void) aimutil_put16(v16, v); 202 202 203 203 return aim_addtlvtochain_raw(list, t, 2, v16); … … 217 217 guint8 v32[4]; 218 218 219 aimutil_put32(v32, v);219 (void) aimutil_put32(v32, v); 220 220 221 221 return aim_addtlvtochain_raw(list, t, 4, v32);
Note: See TracChangeset
for help on using the changeset viewer.