comparison libpurple/protocols/oscar/misc.c @ 22791:83c726877e09

Eliminate a couple of "unused variable" warnings.
author Richard Laager <rlaager@wiktel.com>
date Wed, 30 Apr 2008 02:24:51 +0000
parents 97ecc85b6c18
children 7ba6fc1762dc
comparison
equal deleted inserted replaced
22790:946f1bb22adb 22791:83c726877e09
37 * 37 *
38 */ 38 */
39 void 39 void
40 aim_genericreq_n(OscarData *od, FlapConnection *conn, guint16 family, guint16 subtype) 40 aim_genericreq_n(OscarData *od, FlapConnection *conn, guint16 family, guint16 subtype)
41 { 41 {
42 FlapFrame *frame;
43 aim_snacid_t snacid = 0x00000000; 42 aim_snacid_t snacid = 0x00000000;
44 43
45 flap_connection_send_snac(od, conn, family, subtype, 0x0000, snacid, NULL); 44 flap_connection_send_snac(od, conn, family, subtype, 0x0000, snacid, NULL);
46 } 45 }
47 46
48 void 47 void
49 aim_genericreq_n_snacid(OscarData *od, FlapConnection *conn, guint16 family, guint16 subtype) 48 aim_genericreq_n_snacid(OscarData *od, FlapConnection *conn, guint16 family, guint16 subtype)
50 { 49 {
51 FlapFrame *frame;
52 aim_snacid_t snacid; 50 aim_snacid_t snacid;
53 51
54 snacid = aim_cachesnac(od, family, subtype, 0x0000, NULL, 0); 52 snacid = aim_cachesnac(od, family, subtype, 0x0000, NULL, 0);
55 53
56 flap_connection_send_snac(od, conn, family, subtype, 0x0000, snacid, NULL); 54 flap_connection_send_snac(od, conn, family, subtype, 0x0000, snacid, NULL);