mirror of
https://github.com/brl/mutter.git
synced 2024-11-21 23:50:41 -05:00
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:
parent
ad16804344
commit
21416f453a
@ -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.
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user