mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
Undo double fix of compiler warnings.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@11954 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
fa52ab28bf
commit
2910821fbe
@ -1,5 +1,8 @@
|
|||||||
2005-11-15 <david@hampton-pc.rainbolthampton.net>
|
2005-11-15 <david@hampton-pc.rainbolthampton.net>
|
||||||
|
|
||||||
|
* src/core-utils/gnc-gkeyfile-utils.c: Undo double fix of compiler
|
||||||
|
warnings.
|
||||||
|
|
||||||
* ChangeLog: Convert to utf-8.
|
* ChangeLog: Convert to utf-8.
|
||||||
|
|
||||||
2005-11-15 Neil Williams <linux@codehelp.co.uk>
|
2005-11-15 Neil Williams <linux@codehelp.co.uk>
|
||||||
|
@ -123,10 +123,10 @@ gnc_key_file_save_to_file (const gchar *filename,
|
|||||||
if (error) {
|
if (error) {
|
||||||
*error = g_error_new(G_FILE_ERROR, g_file_error_from_errno(errno),
|
*error = g_error_new(G_FILE_ERROR, g_file_error_from_errno(errno),
|
||||||
"File %s truncated (provided %d, written %zd)",
|
"File %s truncated (provided %d, written %zd)",
|
||||||
filename, length, (int) written);
|
filename, length, written);
|
||||||
} else {
|
} else {
|
||||||
g_critical("File %s truncated (provided %d, written %zd)",
|
g_critical("File %s truncated (provided %d, written %zd)",
|
||||||
filename, length, (int) written);
|
filename, length, written);
|
||||||
}
|
}
|
||||||
/* Ignore any error */
|
/* Ignore any error */
|
||||||
close(fd);
|
close(fd);
|
||||||
|
Loading…
Reference in New Issue
Block a user