mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
d0094e951a
PR: ports/16024 Submitted by: MIHIRA Yoshiro <sanpei@sanpei.org>
12 lines
300 B
Plaintext
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);
|