diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-05-03 11:11:12 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-05-03 11:11:12 +0800 |
commit | b4d7c0892ef5b329476a6c3689585ca60ca2d8b0 (patch) | |
tree | afe0380f609d8cbcff02ce5426de5f91bec406bf /addressbook | |
parent | 20533c3be54a4e3fcb0ab23a15744d3093f8ad6f (diff) | |
download | gsoc2013-evolution-b4d7c0892ef5b329476a6c3689585ca60ca2d8b0.tar.gz gsoc2013-evolution-b4d7c0892ef5b329476a6c3689585ca60ca2d8b0.tar.zst gsoc2013-evolution-b4d7c0892ef5b329476a6c3689585ca60ca2d8b0.zip |
Bug 572977 – Use g_strerror() instead of strerror()
Diffstat (limited to 'addressbook')
-rw-r--r-- | addressbook/gui/component/addressbook-migrate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/addressbook/gui/component/addressbook-migrate.c b/addressbook/gui/component/addressbook-migrate.c index 09d1a1af9f..f0e106e14c 100644 --- a/addressbook/gui/component/addressbook-migrate.c +++ b/addressbook/gui/component/addressbook-migrate.c @@ -1063,7 +1063,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); } |