freebsd-ports/x11-toolkits/iv/files/patch-br
Seigo Tanimura bf57334ca0 - Update to 3.2a.
- The maintainer is now a committer.

Reviewed by:	Kim Culhan <kimc@w8hd.org>
2000-01-25 02:35:00 +00:00

15 lines
431 B
Plaintext

--- src/lib/Unidraw/psview.c.org Fri Sep 4 03:28:12 1992
+++ src/lib/Unidraw/psview.c Sun Jan 23 19:26:35 2000
@@ -752,9 +752,10 @@
if (dashpatsize <= 0) {
out << "[] " << dashoffset << " ";
} else {
+ int i;
out << "[";
- for (int i = 0; i < dashpatsize - 1; i++) {
+ for (i = 0; i < dashpatsize - 1; i++) {
out << dashpat[i] << " ";
}
out << dashpat[i] << "] " << dashoffset << " ";