summaryrefslogtreecommitdiff
path: root/src/util/Cache.c
diff options
context:
space:
mode:
authorgoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>2000-02-18 07:38:30 +0000
committergoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>2000-02-18 07:38:30 +0000
commit6b7d42620b675fa0ce5cf91634cdd7466d6cab62 (patch)
tree732772c619b4f9a2ce9c11f070fa856f710febb2 /src/util/Cache.c
parent17cf0cf5aa90ada1dec9657606eef296b87bfa53 (diff)
Explicit cast.
Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@1392 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/util/Cache.c')
-rw-r--r--src/util/Cache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/Cache.c b/src/util/Cache.c
index a0e37c4e..2c6f2d18 100644
--- a/src/util/Cache.c
+++ b/src/util/Cache.c
@@ -91,7 +91,7 @@ void *Util_CacheMalloc(unsigned index,
cache_size = 0;
}
- data = malloc(size+cache_size);
+ data = (char *)malloc(size+cache_size);
if(data)
{