revert unintended change

svn path=/trunk/; revision=6998
This commit is contained in:
Matthias Clasen 2008-06-11 14:25:18 +00:00
parent 9aad44c339
commit bb5bfd3546
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2008-06-11 Matthias Clasen <mclasen@redhat.com>
* glocalfile.c (g_local_file_enumerate_children): Revert
an unintended change.
2008-06-11 Matthias Clasen <mclasen@redhat.com>
* gfile.c (g_file_replace_contents): Don't unref before the last use.

View File

@ -578,7 +578,7 @@ g_local_file_enumerate_children (GFile *file,
GError **error)
{
GLocalFile *local = G_LOCAL_FILE (file);
return _g_local_file_enumerator_new (local,
return _g_local_file_enumerator_new (local->filename,
attributes, flags,
cancellable, error);
}