mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-01 15:03:39 +02:00
declaration and initialization in one step avoids c99ism
2008-05-19 Hans Breuer <hans@breuer.org> * glocalfileenumerator.c(_g_local_file_enumerator_new) : declaration and initialization in one step avoids c99ism svn path=/trunk/; revision=7052
This commit is contained in:
@@ -194,9 +194,7 @@ _g_local_file_enumerator_new (GLocalFile *file,
|
||||
GError **error)
|
||||
{
|
||||
GLocalFileEnumerator *local;
|
||||
char *filename;
|
||||
|
||||
filename = g_file_get_path (G_FILE (file));
|
||||
char *filename = g_file_get_path (G_FILE (file));
|
||||
|
||||
#ifdef USE_GDIR
|
||||
GError *dir_error;
|
||||
|
Reference in New Issue
Block a user