diff options
author | Adam Jackson <ajax@nwnk.net> | 2005-01-03 16:03:56 +0000 |
---|---|---|
committer | Adam Jackson <ajax@nwnk.net> | 2005-01-03 16:03:56 +0000 |
commit | edb9b6fde0948bb1121a8456500ef9f55f734376 (patch) | |
tree | fbe930ae52fca3a63801800034f2216b2f31c7a7 /src | |
parent | 59cecb714b78f7f384c24bf159bd39c81e9c7ee1 (diff) |
Bug #1488: Fix crash on i830 during startup. (Eric Anholt)
Diffstat (limited to 'src')
-rw-r--r-- | src/i830_video.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/i830_video.c b/src/i830_video.c index 7ea81156..8cf7f451 100644 --- a/src/i830_video.c +++ b/src/i830_video.c @@ -632,7 +632,7 @@ I830SetupImageVideo(ScreenPtr pScreen) pPriv->gamma0 = 0x080808; /* gotta uninit this someplace */ - REGION_INIT(pScreen, &pPriv->clip, NullBox, 0); + REGION_NULL(pScreen, &pPriv->clip); pI830->adaptor = adapt; |