From 034bd0427f17a8a8f594f6901e837a13fc231331 Mon Sep 17 00:00:00 2001 From: Michael Natterer Date: Wed, 10 Feb 2010 12:51:46 +0100 Subject: [PATCH] Bug 609056 - Exporting to Alias PIX format fails Apply patch from Saul Goode which fixes a typo that made exporting to PIX impossible. --- plug-ins/common/file-pix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plug-ins/common/file-pix.c b/plug-ins/common/file-pix.c index 692580a91a..31a0b1410b 100644 --- a/plug-ins/common/file-pix.c +++ b/plug-ins/common/file-pix.c @@ -218,7 +218,7 @@ run (const gchar *name, status = GIMP_PDB_EXECUTION_ERROR; } } - else if (strcmp (name, LOAD_PROC) == 0) + else if (strcmp (name, SAVE_PROC) == 0) { image_ID = param[1].data.d_int32; drawable_ID = param[2].data.d_int32;