freebsd-ports/japanese/iv/files/patch-bs
Shigeyuki Fukushima d0094e951a Fix build error under 4-current and new egcs/C++ compiler.
PR:		ports/16024
Submitted by:	MIHIRA Yoshiro <sanpei@sanpei.org>
2000-01-11 15:52:35 +00:00

13 lines
427 B
Plaintext

--- src/bin/idraw/idcatalog.c.org Mon Jan 3 14:37:37 2000
+++ src/bin/idraw/idcatalog.c Mon Jan 3 14:36:51 2000
@@ -662,7 +662,8 @@
graylevel = CalcGrayLevel(data[0]);
}
} else if (graylevel == -1) {
- for (int i = 0; in >> _buf && i < patternHeight; i++) {
+ int i;
+ for (i = 0; in >> _buf && i < patternHeight; i++) {
if (_buf[0] == '>' || sscanf(_buf, "%x", &data[i]) != 1) {
break;
}