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 /mail/mail-mt.c | |
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 'mail/mail-mt.c')
-rw-r--r-- | mail/mail-mt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/mail-mt.c b/mail/mail-mt.c index a70093e855..566d5ecd6f 100644 --- a/mail/mail-mt.c +++ b/mail/mail-mt.c @@ -111,7 +111,7 @@ mail_msg_new (MailMsgInfo *info) fprintf(log, "%" G_GINT64_MODIFIER "x: lock mail_msg_lock\n", e_util_pthread_id(pthread_self())); } } else { - g_warning ("Could not open log file: %s", strerror(errno)); + g_warning ("Could not open log file: %s", g_strerror(errno)); log_ops = log_locks = FALSE; } } |