summaryrefslogtreecommitdiff
path: root/editors/biew/patches/patch-ae
diff options
context:
space:
mode:
Diffstat (limited to 'editors/biew/patches/patch-ae')
-rw-r--r--editors/biew/patches/patch-ae12
1 files changed, 12 insertions, 0 deletions
diff --git a/editors/biew/patches/patch-ae b/editors/biew/patches/patch-ae
new file mode 100644
index 00000000000..df9a939a292
--- /dev/null
+++ b/editors/biew/patches/patch-ae
@@ -0,0 +1,12 @@
+$NetBSD: patch-ae,v 1.1 2006/06/30 22:22:58 wiz Exp $
+
+--- biewlib/tw_class.c.orig 2001-11-18 17:05:48.000000000 +0000
++++ biewlib/tw_class.c
+@@ -71,6 +71,6 @@ void __FASTCALL__ twcDestroyClassSet(voi
+ TwClass * __FASTCALL__ twcFindClass(const char *name)
+ {
+ TwClass key;
+- (const char *)(key.name) = name;
++ key.name = name;
+ return (TwClass *)la_Find(class_set,&key, comp_class);
+ }