summaryrefslogtreecommitdiff
path: root/fb
diff options
context:
space:
mode:
authorJamey Sharp <jamey@minilop.net>2010-05-07 19:38:05 -0700
committerJamey Sharp <jamey@minilop.net>2010-05-13 17:14:07 -0700
commit6a84cd943430cfc9df55c83aef6a7f8dea6dbb94 (patch)
treeb6b75bd36bc05c394e3b1e52edaccde1d52a136d /fb
parent2d7eb4a19b773d0406c0c2e018a7da97f3565fd5 (diff)
Replace dixChangeGC with calls directly to the right variant.
Signed-off-by: Jamey Sharp <jamey@minilop.net> Reviewed-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'fb')
-rw-r--r--fb/fbseg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fb/fbseg.c b/fb/fbseg.c
index 28a9cf04f..999be1cda 100644
--- a/fb/fbseg.c
+++ b/fb/fbseg.c
@@ -252,7 +252,7 @@ fbSetFg (DrawablePtr pDrawable,
{
ChangeGCVal val;
val.val = fg;
- dixChangeGC (NullClient, pGC, GCForeground, NULL, &val);
+ ChangeGC (NullClient, pGC, GCForeground, &val);
ValidateGC (pDrawable, pGC);
}
}