From: Matthias Clasen Date: Fri, 1 Jul 2005 19:29:33 +0000 (+0000) Subject: And remove a redundant cast X-Git-Tag: GLIB_2_7_2~14 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1f9b1179cd21b0c061b73b35067b15aa1035fa79;p=platform%2Fupstream%2Fglib.git And remove a redundant cast --- diff --git a/glib/gkeyfile.c b/glib/gkeyfile.c index a779486..69904f3 100644 --- a/glib/gkeyfile.c +++ b/glib/gkeyfile.c @@ -1030,7 +1030,7 @@ g_key_file_get_keys (GKeyFile *key_file, num_keys++; } - keys = (gchar **) g_new0 (gchar *, num_keys + 1); + keys = g_new0 (gchar *, num_keys + 1); i = num_keys - 1; for (tmp = group->key_value_pairs; tmp; tmp = tmp->next)