summaryrefslogtreecommitdiff
path: root/graphics/fxtv
diff options
context:
space:
mode:
authorRoger Hardiman <roger@FreeBSD.org>1999-05-10 08:09:39 +0000
committerRoger Hardiman <roger@FreeBSD.org>1999-05-10 08:09:39 +0000
commit70b1b9126397ac775c95080eee36ce22590dcd86 (patch)
treef5e86eca0adc78b8b539623fb60d59507baa20c1 /graphics/fxtv
parentadd WWW (diff)
Fix typo in function XUTILGetVisualBpp(), it causes fxtv to fail on
X server with both depth 8 and 24 visuals. Submitted by: Luoqi Chen <luoqi@watermarkgroup.com>
Notes
Notes: svn path=/head/; revision=18725
Diffstat (limited to 'graphics/fxtv')
-rw-r--r--graphics/fxtv/files/patch-ab11
1 files changed, 11 insertions, 0 deletions
diff --git a/graphics/fxtv/files/patch-ab b/graphics/fxtv/files/patch-ab
new file mode 100644
index 000000000000..9d861c66b429
--- /dev/null
+++ b/graphics/fxtv/files/patch-ab
@@ -0,0 +1,11 @@
+--- xutil.c.orig Thu May 6 12:13:10 1999
++++ xutil.c Thu May 6 01:41:39 1999
+@@ -666,7 +666,7 @@
+
+ /* Look up cached value */
+ for ( i = 0; i < Vlist_len; i++ )
+- if ( Vlist[i].visualid = vi->visualid )
++ if ( Vlist[i].visualid == vi->visualid )
+ break;
+
+ /* Didn't have a cached value? Go figure it out. */