1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-21 20:38:45 +00:00
freebsd-ports/japanese/iv/files/patch-bl
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
335 B
Plaintext

--- src/lib/IV-2_6/control.c.org Wed Feb 12 05:48:58 1992
+++ src/lib/IV-2_6/control.c Mon Jan 3 14:18:03 2000
@@ -162,7 +162,7 @@
return true;
}
}
- for (c = state_->Prev(); c != nil; c = c->Prev()) {
+ for (ControlState* c = state_->Prev(); c != nil; c = c->Prev()) {
if (c->IsView(i)) {
return true;
}