summaryrefslogtreecommitdiff
path: root/gdk-pixbuf
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2010-11-05 19:35:59 -0400
committerMatthias Clasen <mclasen@redhat.com>2010-11-05 19:35:59 -0400
commit310d7d9b3add6d89cb171e69de2f98f12214fb89 (patch)
tree2a3b9f082638f87ffaed7f141b8fdf5ace9679a3 /gdk-pixbuf
parente76b2118b5c45ce889995dfd8f6434eaa332b204 (diff)
downloadgdk-pixbuf-310d7d9b3add6d89cb171e69de2f98f12214fb89.tar.gz
Improve a string
Bug 627639
Diffstat (limited to 'gdk-pixbuf')
-rw-r--r--gdk-pixbuf/io-pcx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdk-pixbuf/io-pcx.c b/gdk-pixbuf/io-pcx.c
index a36f399ba..b658f5828 100644
--- a/gdk-pixbuf/io-pcx.c
+++ b/gdk-pixbuf/io-pcx.c
@@ -653,7 +653,7 @@ gdk_pixbuf__pcx_load_increment(gpointer data, const guchar *buf, guint size,
if(context->bpp == 8) {
context->p_data = g_try_malloc(sizeof(guchar) * context->width * context->height);
if(!context->p_data) {
- g_set_error_literal(error, GDK_PIXBUF_ERROR, GDK_PIXBUF_ERROR_INSUFFICIENT_MEMORY, _("Couldn't allocate memory for paletted data"));
+ g_set_error_literal(error, GDK_PIXBUF_ERROR, GDK_PIXBUF_ERROR_INSUFFICIENT_MEMORY, _("Couldn't allocate memory for PCX image"));
return FALSE;
}
}