freebsd-ports/japanese/iv/files/patch-bx
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

11 lines
453 B
Text

--- src/lib/Unidraw/stencilcomp.c.org Wed Mar 25 10:18:16 1992
+++ src/lib/Unidraw/stencilcomp.c Mon Jan 3 15:30:38 2000
@@ -169,7 +169,7 @@
StencilComp* comp = (StencilComp*) GetSubject();
Bitmap* image, *mask;
comp->GetStencil()->GetOriginal(image, mask);
- char* tag = (image == mask) ? "SSten" : "FSten";
+ const char* tag = (image == mask) ? "SSten" : "FSten";
Coord w = image->Width();
Coord h = image->Height();