netmeta: avoid using g[u]long in headers

This commit is contained in:
Wim Taymans 2011-11-10 18:58:35 +01:00
parent 4b216bf73a
commit 08d9f54044
2 changed files with 2 additions and 3 deletions

View file

@ -330,8 +330,7 @@ gst_net_address_equal (const GstNetAddress * naddr1,
* Since: 0.10.24
*/
gint
gst_net_address_to_string (const GstNetAddress * naddr, gchar * dest,
gulong len)
gst_net_address_to_string (const GstNetAddress * naddr, gchar * dest, gsize len)
{
gint result;

View file

@ -102,7 +102,7 @@ gint gst_net_address_get_address_bytes (const GstNetAddress *naddr, g
gboolean gst_net_address_equal (const GstNetAddress *naddr1,
const GstNetAddress *naddr2);
gint gst_net_address_to_string (const GstNetAddress *naddr, gchar *dest, gulong len);
gint gst_net_address_to_string (const GstNetAddress *naddr, gchar *dest, gsize len);
G_END_DECLS