From: Matthias Clasen Date: Fri, 1 Jul 2005 19:29:33 +0000 (+0000) Subject: And remove a redundant cast X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=1f9b1179cd21b0c061b73b35067b15aa1035fa79;p=dana%2Fcg-glib.git And remove a redundant cast --- diff --git a/glib/gkeyfile.c b/glib/gkeyfile.c index a779486d..69904f3f 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)