diff options
author | Matt Turner <mattst88@gmail.com> | 2011-09-26 22:22:09 -0400 |
---|---|---|
committer | Matt Turner <mattst88@gmail.com> | 2011-09-27 22:47:29 -0400 |
commit | ee09a9a340f8946f2d4a71a431b64189dbb5c256 (patch) | |
tree | 77a01d037b6d0f9a37b3729e00d587201d2e995e /src/mga_storm.c | |
parent | 94bbeb132c7eda912d1b402a1a91ca7cbbf5e6a1 (diff) |
Remove xalloc/xcalloc/xrealloc/xfree
Reviewed-by: Jamey Sharp <jamey@minilop.net>
Signed-off-by: Matt Turner <mattst88@gmail.com>
Diffstat (limited to 'src/mga_storm.c')
-rw-r--r-- | src/mga_storm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mga_storm.c b/src/mga_storm.c index db7fae7..f0e6194 100644 --- a/src/mga_storm.c +++ b/src/mga_storm.c @@ -583,7 +583,7 @@ Bool mgaAccelInit( ScreenPtr pScreen ) BoxRec AvailFBArea; int i; - pMga->ScratchBuffer = xalloc(((pScrn->displayWidth * pMga->CurrentLayout.bitsPerPixel) + 127) >> 3); + pMga->ScratchBuffer = malloc(((pScrn->displayWidth * pMga->CurrentLayout.bitsPerPixel) + 127) >> 3); if(!pMga->ScratchBuffer) return FALSE; pMga->AccelInfoRec = infoPtr = XAACreateInfoRec(); |