mirror of
https://github.com/X11Libre/xserver.git
synced 2026-09-25 21:02:21 +00:00
Remove a bunch of useless casts.
We've had void * for twenty years now people let's try to act like we know how it works.
This commit is contained in:
parent
0fb4390526
commit
132b464d73
72 changed files with 343 additions and 376 deletions
|
|
@ -139,7 +139,7 @@ shadowSetup(ScreenPtr pScreen)
|
|||
if (!DamageSetup(pScreen))
|
||||
return FALSE;
|
||||
|
||||
pBuf = (shadowBufPtr) xalloc(sizeof(shadowBufRec));
|
||||
pBuf = xalloc(sizeof(shadowBufRec));
|
||||
if (!pBuf)
|
||||
return FALSE;
|
||||
#ifdef BACKWARDS_COMPATIBILITY
|
||||
|
|
|
|||
Loading…
Reference in a new issue