r1474 - trunk/code/client
DONOTREPLY at icculus.org
DONOTREPLY at icculus.org
Fri Oct 24 03:08:54 EDT 2008
Author: ludwig
Date: 2008-10-24 03:08:52 -0400 (Fri, 24 Oct 2008)
New Revision: 1474
Modified:
trunk/code/client/cl_curl.c
Log:
fix return value of CL_cURL_CallbackWrite (#3804)
Modified: trunk/code/client/cl_curl.c
===================================================================
--- trunk/code/client/cl_curl.c 2008-10-24 07:02:35 UTC (rev 1473)
+++ trunk/code/client/cl_curl.c 2008-10-24 07:08:52 UTC (rev 1474)
@@ -218,7 +218,7 @@
return 0;
}
-static int CL_cURL_CallbackWrite(void *buffer, size_t size, size_t nmemb,
+static size_t CL_cURL_CallbackWrite(void *buffer, size_t size, size_t nmemb,
void *stream)
{
FS_Write( buffer, size*nmemb, ((fileHandle_t*)stream)[0] );
More information about the quake3-commits
mailing list