1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-31 21:57:12 +00:00
freebsd-ports/japanese/iv/files/patch-bm
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

12 lines
300 B
Plaintext

--- src/bin/dclock/segment.c.org Tue Mar 5 02:56:58 1991
+++ src/bin/dclock/segment.c Mon Jan 3 14:19:39 2000
@@ -51,7 +51,7 @@
Row[i] |= Row[i]<<16;
seed >>= 4;
}
- for (i = 0; i < 16; i++) {
+ for (int i = 0; i < 16; i++) {
dat[i] = Row[i%4];
}
pat = new Pattern(dat);