comparison src/oscar.c @ 505:3bd51b3f07c3

[gaim-migrate @ 515] blech committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Tue, 18 Jul 2000 22:26:58 +0000
parents 6e318907bcce
children 3133ab511d92
comparison
equal deleted inserted replaced
504:182074f73487 505:3bd51b3f07c3
823 /* 823 /*
824 * Recieved in response to an IM sent with the AIM_IMFLAGS_ACK option. 824 * Recieved in response to an IM sent with the AIM_IMFLAGS_ACK option.
825 */ 825 */
826 int gaim_parse_msgack(struct aim_session_t *sess, struct command_rx_struct *command, ...) { 826 int gaim_parse_msgack(struct aim_session_t *sess, struct command_rx_struct *command, ...) {
827 va_list ap; 827 va_list ap;
828 unsigned short type; 828 u_short type;
829 char *sn = NULL; 829 char *sn = NULL;
830 830
831 ap = va_start(ap, command); 831 va_start(ap, command);
832 type = va_arg(ap, unsigned short); 832 type = (u_short)va_arg(ap, u_int);
833 sn = va_arg(ap, char *); 833 sn = va_arg(ap, char *);
834 va_end(ap); 834 va_end(ap);
835 835
836 sprintf(debug_buff, "Sent message to %s.\n", sn); 836 sprintf(debug_buff, "Sent message to %s.\n", sn);
837 debug_print(debug_buff); 837 debug_print(debug_buff);