Wed, 30 May 2007 06:20:47 +0000
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;