Another change from o_sukhodolsky:

Wed, 30 May 2007 06:20:47 +0000

author
Richard Laager <rlaager@pidgin.im>
date
Wed, 30 May 2007 06:20:47 +0000
changeset 17469
9b5eb283f01c
parent 17468
4ce91d523015
child 17470
8cba93978730

Another change from o_sukhodolsky:

Fix the Zephyr z_message type to avoid errors about arithmatic on a void
pointer. This type matches that from my system-wide zephyr header on
Ubuntu.

References #1344

libpurple/protocols/zephyr/zephyr.h file | annotate | diff | comparison | revisions
--- a/libpurple/protocols/zephyr/zephyr.h	Wed May 30 06:12:30 2007 +0000
+++ b/libpurple/protocols/zephyr/zephyr.h	Wed May 30 06:20:47 2007 +0000
@@ -109,7 +109,7 @@
     ZChecksum_t		z_checksum;
     int			z_num_other_fields;
     char		*z_other_fields[Z_MAXOTHERFIELDS];
-    void		*z_message;
+    caddr_t		z_message;
     int			z_message_len;
 } ZNotice_t;
 

mercurial