Wrap g_error calls in braces.

* src/core/schema-bindings.c: Wrap g_error calls in braces.


svn path=/trunk/; revision=4110
This commit is contained in:
Thomas James Alexander Thurman 2009-02-03 02:21:36 +00:00
parent ad16804344
commit 21416f453a
2 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2009-02-02 Matt Kraai <kraai@ftfbs.org>
* src/core/schema-bindings.c: Wrap g_error calls in braces.
2009-02-01 Thomas Thurman <tthurman@gnome.org>
* configure.in: Post-release bump to 2.25.233.

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