# HG changeset patch # User Richard Laager # Date 1180506047 0 # Node ID 8f6396cf59fb8e8b00e542296081d6005bbb2aba # Parent d4464c354346b65267a18c818b31aed951dde5ac 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 diff -r d4464c354346 -r 8f6396cf59fb libpurple/protocols/zephyr/zephyr.h --- 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;