diff options
author | Wang Zhenyu <zhenyu.z.wang@intel.com> | 2007-02-27 13:56:31 +0800 |
---|---|---|
committer | Wang Zhenyu <zhenyu.z.wang@intel.com> | 2007-02-27 13:56:31 +0800 |
commit | acd9f3e28fcf5e91e09d8bdca4cc58681b1fc92a (patch) | |
tree | c8551e8188c85c35b09b2a97661b461021868e64 /src/i830_video.c | |
parent | 5b765065c0bdf671b60d8a2fe512f6307f753eab (diff) |
Fix typo when assign overlay reg mem pointer
Diffstat (limited to 'src/i830_video.c')
-rw-r--r-- | src/i830_video.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/i830_video.c b/src/i830_video.c index 4c64b309..e580dab5 100644 --- a/src/i830_video.c +++ b/src/i830_video.c @@ -2175,7 +2175,8 @@ I830PutImage(ScrnInfoPtr pScrn, if (pPriv->textured) overlay = NULL; else - (I830OverlayRegPtr) (pI830->FbBase + pI830->overlay_regs->offset); + overlay = (I830OverlayRegPtr) (pI830->FbBase + + pI830->overlay_regs->offset); #if 0 ErrorF("I830PutImage: src: (%d,%d)(%d,%d), dst: (%d,%d)(%d,%d)\n" |