summaryrefslogtreecommitdiff
path: root/src/RdBitF.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/RdBitF.c')
-rw-r--r--src/RdBitF.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/RdBitF.c b/src/RdBitF.c
index dbea542..51f6e2a 100644
--- a/src/RdBitF.c
+++ b/src/RdBitF.c
@@ -226,7 +226,7 @@ XmuReadBitmapData(FILE *fstream, unsigned int *width, unsigned int *height,
bytes_per_line = (ww+7)/8 + padding;
size = bytes_per_line * hh;
- data = (unsigned char *) Xmalloc ((unsigned int) size);
+ data = Xmalloc ((unsigned int) size);
if (!data)
RETURN (BitmapNoMemory);