summaryrefslogtreecommitdiff
path: root/gdk-pixbuf
diff options
context:
space:
mode:
authorChristian Persch <chpe@gnome.org>2009-08-20 15:32:22 +0200
committerChristian Persch <chpe@gnome.org>2009-08-24 15:30:00 +0200
commite8dcf330cca3e97ee8ca1a5b81c6f475df4eeed1 (patch)
tree75876b02db77fc924d6ea81562e779b92be1e64c /gdk-pixbuf
parenta79f929dd6c89fceeaf0d9039e5a10cad9d87d2f (diff)
downloadgdk-pixbuf-e8dcf330cca3e97ee8ca1a5b81c6f475df4eeed1.tar.gz
Preserve errno, and always use g_strerror()
Bug #592461.
Diffstat (limited to 'gdk-pixbuf')
-rw-r--r--gdk-pixbuf/io-gif.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdk-pixbuf/io-gif.c b/gdk-pixbuf/io-gif.c
index 0a5803fb0..04fb1d117 100644
--- a/gdk-pixbuf/io-gif.c
+++ b/gdk-pixbuf/io-gif.c
@@ -220,7 +220,7 @@ gif_read (GifContext *context, guchar *buffer, size_t len)
G_FILE_ERROR,
g_file_error_from_errno (save_errno),
_("Failure reading GIF: %s"),
- strerror (save_errno));
+ g_strerror (save_errno));
}
#ifdef IO_GIFDEBUG