From: vortex <vortex@d7cf8633-e32d-0410-b094-e92efae38249>
Date: Sat, 18 Feb 2012 10:04:23 +0000 (+0000)
Subject: fix type cast
X-Git-Tag: xonotic-v0.6.0~26
X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=538b610568382f17ce43063dba6a52ad4b1ccf64;p=xonotic%2Fdarkplaces.git

fix type cast

git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@11693 d7cf8633-e32d-0410-b094-e92efae38249
::stable-branch::merge=dd52db86fdb87a94b3dbf861476c205ce8c980f7
---

diff --git a/thread_sdl.c b/thread_sdl.c
index 9df9ffc9..7c97cbdf 100644
--- a/thread_sdl.c
+++ b/thread_sdl.c
@@ -128,7 +128,7 @@ typedef struct {
 
 void *_Thread_CreateBarrier(unsigned int count, const char *filename, int fileline)
 {
-	barrier_t *b = Z_Malloc(sizeof(barrier_t));
+	barrier_t *b = (barrier_t)Z_Malloc(sizeof(barrier_t));
 #ifdef THREADDEBUG
 	Sys_PrintfToTerminal("%p barrier create(%d) %s:%i\n", b, count, filename, fileline);
 #endif