fix warnings from gcc compilation with my mad CFLAGS

This commit is contained in:
Benjamin Otte
2009-06-29 18:24:08 +02:00
parent 4b8ad50fc4
commit afd63c3281
12 changed files with 119 additions and 106 deletions

View File

@@ -222,11 +222,11 @@ cleanup_dir_recurse (GFile *parent, GFile *root)
}
static void
cleanup_subdirs (const char *basedir)
cleanup_subdirs (const char *base_dir)
{
GFile *base, *file;
base = g_file_new_for_path (basedir);
base = g_file_new_for_path (base_dir);
file = g_file_get_child (base, "applications");
cleanup_dir_recurse (file, file);
g_object_unref (file);