summaryrefslogtreecommitdiff
path: root/gio/gcontenttype.c
diff options
context:
space:
mode:
authorMichael Natterer <mitch@imendio.com>2008-02-01 13:17:04 +0000
committerMichael Natterer <mitch@src.gnome.org>2008-02-01 13:17:04 +0000
commit573a73f3915a74b72a1f13c24beafc749b56e3d3 (patch)
tree4a508fb2eca5a7ef0e74bb3e25062921630d505d /gio/gcontenttype.c
parenta7749bab36a79b509310baf8e479da2bf75d58a0 (diff)
downloadglib-573a73f3915a74b72a1f13c24beafc749b56e3d3.tar.gz
assign the return value of xdg_mime_list_mime_parents() to a variable of
2008-02-01 Michael Natterer <mitch@imendio.com> * gcontenttype.c (_g_unix_content_type_get_parents): assign the return value of xdg_mime_list_mime_parents() to a variable of the correct type. svn path=/trunk/; revision=6441
Diffstat (limited to 'gio/gcontenttype.c')
-rw-r--r--gio/gcontenttype.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gio/gcontenttype.c b/gio/gcontenttype.c
index a5cc41faf..2b0f9d0b1 100644
--- a/gio/gcontenttype.c
+++ b/gio/gcontenttype.c
@@ -322,7 +322,7 @@ char **
_g_unix_content_type_get_parents (const char *type)
{
const char *umime;
- const char **parents;
+ char **parents;
GPtrArray *array;
int i;