summaryrefslogtreecommitdiff
path: root/glib/gconvert.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2004-11-01 18:47:12 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2004-11-01 18:47:12 +0000
commit286d84fcb015da87985c6d2d996d76960322b36d (patch)
tree0da8d7393005b5fdf944869ab3569d95b4be778c /glib/gconvert.c
parent938f1a9a5ae4e9ee61a2779406cb319fb2299535 (diff)
downloadglib-286d84fcb015da87985c6d2d996d76960322b36d.tar.gz
glib/gdebug.h glib/gutils.c gobject/gtype.c gthread/gthread-posix.c
2004-11-01 Matthias Clasen <mclasen@redhat.com> * glib/gconvert.c: * glib/gdebug.h * glib/gutils.c * gobject/gtype.c * gthread/gthread-posix.c * tests/timeloop-closure.c * tests/timeloop.c: Fix sparse warnings. (#157014, Kjartan Maraas)
Diffstat (limited to 'glib/gconvert.c')
-rw-r--r--glib/gconvert.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/glib/gconvert.c b/glib/gconvert.c
index 6915893f0..4566f88d7 100644
--- a/glib/gconvert.c
+++ b/glib/gconvert.c
@@ -1784,7 +1784,7 @@ g_uri_list_extract_uris (const gchar *uri_list)
result = g_new (gchar *, n_uris + 1);
- result[n_uris--] = 0;
+ result[n_uris--] = NULL;
for (u = uris; u; u = u->next)
result[n_uris--] = u->data;