diff options
author | Shigeyuki Fukushima <shige@FreeBSD.org> | 2000-01-11 15:52:35 +0000 |
---|---|---|
committer | Shigeyuki Fukushima <shige@FreeBSD.org> | 2000-01-11 15:52:35 +0000 |
commit | d0094e951a8f7bd1f793e0cd66cc6ed91b034a58 (patch) | |
tree | db5ef3978ff9d2fc60f3bf46216c152189bffdb9 /japanese/iv/files/patch-bm | |
parent | Add explanation of `locale warning message' to DESCR and MESSAGE. (diff) |
Fix build error under 4-current and new egcs/C++ compiler.
PR: ports/16024
Submitted by: MIHIRA Yoshiro <sanpei@sanpei.org>
Diffstat (limited to 'japanese/iv/files/patch-bm')
-rw-r--r-- | japanese/iv/files/patch-bm | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/japanese/iv/files/patch-bm b/japanese/iv/files/patch-bm new file mode 100644 index 000000000000..8caaca5e8d61 --- /dev/null +++ b/japanese/iv/files/patch-bm @@ -0,0 +1,11 @@ +--- 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); |