diff options
author | Nicolas Dufresne <nicolas.dufresne@collabora.co.uk> | 2015-06-14 09:17:21 -0400 |
---|---|---|
committer | Nicolas Dufresne <nicolas.dufresne@collabora.co.uk> | 2015-06-14 09:17:21 -0400 |
commit | 6eb58a67a937d4f80e9862861b75e82dfe0e51a3 (patch) | |
tree | 5782e37e6bc20ffd77c22dd2040dcc8fd4ce8d30 /gst | |
parent | 781865e0dae6d187785cb07084a4e3482230461d (diff) |
doc: In GstUri we meant nul-terminated, not %NULL
%NULL refers to the pointer. I've written it this way in one
word as this is what GLib uses.
Diffstat (limited to 'gst')
-rw-r--r-- | gst/gsturi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/gsturi.c b/gst/gsturi.c index b13dbca62..9af50e8fc 100644 --- a/gst/gsturi.c +++ b/gst/gsturi.c @@ -1946,7 +1946,7 @@ gst_uri_make_writable (GstUri * uri) * * Convert the URI to a string. * - * Returns the URI as held in this object as a gchar* %NULL terminated string. + * Returns the URI as held in this object as a #gchar* nul-terminated string. * The caller should g_free() the string once they are finished with it. * The string is put together as described in RFC 3986. * |