Mercurial > pidgin
diff libpurple/protocols/msn/msg.h @ 31031:61db10475bed
As Mark did before, we probably don't need a return value from these
unref functions. Also, make the ref counts unsigned.
| author | Elliott Sales de Andrade <qulogic@pidgin.im> |
|---|---|
| date | Wed, 15 Dec 2010 04:17:59 +0000 |
| parents | 5eb2ea662d8c |
| children | 05c14f037414 |
line wrap: on
line diff
--- a/libpurple/protocols/msn/msg.h Wed Dec 15 00:00:12 2010 +0000 +++ b/libpurple/protocols/msn/msg.h Wed Dec 15 04:17:59 2010 +0000 @@ -74,7 +74,7 @@ */ struct _MsnMessage { - size_t ref_count; /**< The reference count. */ + guint ref_count; /**< The reference count. */ MsnMsgType type; @@ -89,8 +89,8 @@ char *charset; char *body; gsize body_len; - guint total_chunks; /**< How many chunks in this multi-part message */ - guint received_chunks; /**< How many chunks we've received so far */ + guint total_chunks; /**< How many chunks in this multi-part message */ + guint received_chunks; /**< How many chunks we've received so far */ GHashTable *header_table; GList *header_list;
