diff options
author | Julien Cristau <jcristau@debian.org> | 2011-04-28 17:31:52 +0200 |
---|---|---|
committer | Julien Cristau <jcristau@debian.org> | 2011-04-28 17:32:21 +0200 |
commit | 39c6d1da8af563afa665d5bb149c9693e24c6eab (patch) | |
tree | c6b4ed96295509bc704682d54bb7a146b84f9450 /src/atimach64exa.c | |
parent | d60087f0b6dd4d082230312580ae35e14acd0c6e (diff) |
Replace deprecated xalloc/xfree/xrealloc with malloc/free/realloc
Signed-off-by: Julien Cristau <jcristau@debian.org>
Diffstat (limited to 'src/atimach64exa.c')
-rw-r--r-- | src/atimach64exa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/atimach64exa.c b/src/atimach64exa.c index 67c5f22..a3e49bf 100644 --- a/src/atimach64exa.c +++ b/src/atimach64exa.c @@ -686,7 +686,7 @@ Bool ATIMach64ExaInit(ScreenPtr pScreen) pATI->RenderAccelEnabled ? "enabled" : "disabled"); if (!exaDriverInit(pScreen, pATI->pExa)) { - xfree(pATI->pExa); + free(pATI->pExa); pATI->pExa = NULL; return FALSE; } |