[Gnucash-changes] r11954 - gnucash/trunk - Undo double fix of compiler warnings.

David Hampton hampton at cvs.gnucash.org
Tue Nov 15 20:22:04 EST 2005


Author: hampton
Date: 2005-11-15 20:22:03 -0500 (Tue, 15 Nov 2005)
New Revision: 11954
Trac: http://svn.gnucash.org/trac/changeset/11954

Modified:
   gnucash/trunk/ChangeLog
   gnucash/trunk/src/core-utils/gnc-gkeyfile-utils.c
Log:
Undo double fix of compiler warnings.

Modified: gnucash/trunk/ChangeLog
===================================================================
--- gnucash/trunk/ChangeLog	2005-11-16 00:56:41 UTC (rev 11953)
+++ gnucash/trunk/ChangeLog	2005-11-16 01:22:03 UTC (rev 11954)
@@ -1,5 +1,8 @@
 2005-11-15    <david at hampton-pc.rainbolthampton.net>
 
+	* src/core-utils/gnc-gkeyfile-utils.c: Undo double fix of compiler
+	warnings.
+
 	* ChangeLog: Convert to utf-8.
 
 2005-11-15  Neil Williams <linux at codehelp.co.uk>

Modified: gnucash/trunk/src/core-utils/gnc-gkeyfile-utils.c
===================================================================
--- gnucash/trunk/src/core-utils/gnc-gkeyfile-utils.c	2005-11-16 00:56:41 UTC (rev 11953)
+++ gnucash/trunk/src/core-utils/gnc-gkeyfile-utils.c	2005-11-16 01:22:03 UTC (rev 11954)
@@ -123,10 +123,10 @@
     if (error) {
       *error = g_error_new(G_FILE_ERROR, g_file_error_from_errno(errno), 
 			   "File %s truncated (provided %d, written %zd)",
-			   filename, length, (int) written);
+			   filename, length, written);
     } else {
       g_critical("File %s truncated (provided %d, written %zd)",
-	      filename, length, (int) written);
+	      filename, length, written);
     }
     /* Ignore any error */
     close(fd);



More information about the gnucash-changes mailing list