projects
/
platform
/
upstream
/
glib.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7e9c3ab
)
And remove a redundant cast
author
Matthias Clasen
<matthiasc@src.gnome.org>
Fri, 1 Jul 2005 19:29:33 +0000
(19:29 +0000)
committer
Matthias Clasen
<matthiasc@src.gnome.org>
Fri, 1 Jul 2005 19:29:33 +0000
(19:29 +0000)
glib/gkeyfile.c
patch
|
blob
|
history
diff --git
a/glib/gkeyfile.c
b/glib/gkeyfile.c
index
a779486
..
69904f3
100644
(file)
--- 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)