diff options
author | vanilla <vanilla@FreeBSD.org> | 2000-10-13 15:59:48 +0800 |
---|---|---|
committer | vanilla <vanilla@FreeBSD.org> | 2000-10-13 15:59:48 +0800 |
commit | 4b3befadb2270cbb1e041fa697989cc95405d0fa (patch) | |
tree | d104f887386c8198461cc291d6d5cf4a9c7ccea5 /graphics/gimp-app/files | |
parent | e18ad92677de983cf7f22ba03d65a0eeae2e03fb (diff) | |
download | freebsd-ports-gnome-4b3befadb2270cbb1e041fa697989cc95405d0fa.tar.gz freebsd-ports-gnome-4b3befadb2270cbb1e041fa697989cc95405d0fa.tar.zst freebsd-ports-gnome-4b3befadb2270cbb1e041fa697989cc95405d0fa.zip |
Upgrade to 1.1.27.
PR: ports/21945
Submitted by: trevor
Diffstat (limited to 'graphics/gimp-app/files')
-rw-r--r-- | graphics/gimp-app/files/patch-plug-ins_print_print-escp2_c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/graphics/gimp-app/files/patch-plug-ins_print_print-escp2_c b/graphics/gimp-app/files/patch-plug-ins_print_print-escp2_c new file mode 100644 index 000000000000..9575c80c7952 --- /dev/null +++ b/graphics/gimp-app/files/patch-plug-ins_print_print-escp2_c @@ -0,0 +1,20 @@ +--- plug-ins/print/print-escp2.c.orig Fri Oct 13 01:17:44 2000 ++++ plug-ins/print/print-escp2.c Fri Oct 13 01:18:14 2000 +@@ -26,6 +26,8 @@ + * compile on generic platforms that don't support glib, gimp, gtk, etc. + */ + ++#include <sys/types.h> ++ + #ifndef WEAVETEST + #include "print.h" + #endif +@@ -4000,7 +4002,7 @@ + if (lineoffs[0].v[j] != 0) + fprintf(stderr, + "WARNING: pass %d subpass %d row %d: lineoffs %ld\n", +- w.pass, i, row, lineoffs[0].v[j]); ++ w.pass, i, row, (long)lineoffs[0].v[j]); + lineoffs[0].v[j] = 0; + lineactive[0].v[j] = 0; + } |