Fixed bunch of warnings.

This commit is contained in:
Tomas Frydrych
2008-12-18 11:05:17 +00:00
parent 9821453b5f
commit a6d04255a8
3 changed files with 52 additions and 2 deletions

View File

@ -2854,7 +2854,6 @@ meta_prefs_set_clutter_plugins (GSList *list)
void
meta_prefs_override_clutter_plugins (GSList *list)
{
GError *err = NULL;
GSList *l;
clutter_plugins_overridden = TRUE;

View File

@ -138,12 +138,16 @@ produce_bindings ()
fprintf (target_file, "%s", buffer);
if (fclose (source_file)!=0)
{
g_error ("Cannot close %s: %s\n",
source_filename, strerror (errno));
}
if (fclose (target_file)!=0)
{
g_error ("Cannot close %s: %s\n",
target_filename, strerror (errno));
}
}
int