diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-05-03 11:11:12 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-05-04 00:47:50 +0800 |
commit | def73166fcfd6b5517592ec6d04a8eb3871bd1f7 (patch) | |
tree | d2d62d7c5a5a43ffd8b07cedde249eef7cb2c218 /addressbook | |
parent | 4491d3ffd8dee15a3ba71dde5eb234806b121fdf (diff) | |
download | gsoc2013-evolution-def73166fcfd6b5517592ec6d04a8eb3871bd1f7.tar.gz gsoc2013-evolution-def73166fcfd6b5517592ec6d04a8eb3871bd1f7.tar.zst gsoc2013-evolution-def73166fcfd6b5517592ec6d04a8eb3871bd1f7.zip |
Bug 572977 – Use g_strerror() instead of strerror()
Diffstat (limited to 'addressbook')
-rw-r--r-- | addressbook/gui/component/e-book-shell-module-migrate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/addressbook/gui/component/e-book-shell-module-migrate.c b/addressbook/gui/component/e-book-shell-module-migrate.c index 9cb931dc09..e4e2c04098 100644 --- a/addressbook/gui/component/e-book-shell-module-migrate.c +++ b/addressbook/gui/component/e-book-shell-module-migrate.c @@ -1068,7 +1068,7 @@ migrate_pilot_data (const char *old_path, const char *new_path) n = fsync (fd1); if (n == -1) { - g_warning ("Failed to migrate %s: %s", dent, strerror (errno)); + g_warning ("Failed to migrate %s: %s", dent, g_strerror (errno)); g_unlink (filename); } |