summaryrefslogtreecommitdiff
path: root/miext/shadow/shalloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'miext/shadow/shalloc.c')
-rw-r--r--miext/shadow/shalloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/miext/shadow/shalloc.c b/miext/shadow/shalloc.c
index 72aa28b14..f57cb5266 100644
--- a/miext/shadow/shalloc.c
+++ b/miext/shadow/shalloc.c
@@ -45,6 +45,6 @@ shadowAlloc (int width, int height, int bpp)
/* Cant use PixmapBytePad -- the structure is probably not initialized yet */
stride = BitmapBytePad (width * bpp);
- fb = xalloc (stride * height);
+ fb = malloc(stride * height);
return fb;
}