metacity r4110 - in trunk: . src/core
- From: tthurman svn gnome org
- To: svn-commits-list gnome org
- Subject: metacity r4110 - in trunk: . src/core
- Date: Tue, 3 Feb 2009 02:21:36 +0000 (UTC)
Author: tthurman
Date: Tue Feb 3 02:21:36 2009
New Revision: 4110
URL: http://svn.gnome.org/viewvc/metacity?rev=4110&view=rev
Log:
* src/core/schema-bindings.c: Wrap g_error calls in braces.
Modified:
trunk/ChangeLog
trunk/src/core/schema-bindings.c
Modified: trunk/src/core/schema-bindings.c
==============================================================================
--- trunk/src/core/schema-bindings.c (original)
+++ trunk/src/core/schema-bindings.c Tue Feb 3 02:21:36 2009
@@ -138,12 +138,16 @@
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
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]