changeset 17471:8f6396cf59fb

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
author Richard Laager <rlaager@wiktel.com>
date Wed, 30 May 2007 06:20:47 +0000
parents d4464c354346
children a236c67e39b6
files libpurple/protocols/zephyr/zephyr.h
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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;