Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
GStreamer
gstreamer
Commits
08d9f540
Commit
08d9f540
authored
Nov 10, 2011
by
Wim Taymans
Browse files
netmeta: avoid using g[u]long in headers
parent
4b216bf7
Changes
2
Show whitespace changes
Inline
Side-by-side
libs/gst/net/gstnetaddressmeta.c
View file @
08d9f540
...
...
@@ -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
;
...
...
libs/gst/net/gstnetaddressmeta.h
View file @
08d9f540
...
...
@@ -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
,
g
ulong
len
);
gint
gst_net_address_to_string
(
const
GstNetAddress
*
naddr
,
gchar
*
dest
,
g
size
len
);
G_END_DECLS
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment