]> git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
fix missing { character
authorhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Tue, 27 Feb 2007 21:15:48 +0000 (21:15 +0000)
committerhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Tue, 27 Feb 2007 21:15:48 +0000 (21:15 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@6920 d7cf8633-e32d-0410-b094-e92efae38249

libcurl.c

index 7c30291df2fcb6f065c5a813a84f87b8b51db43f..4061f5516732e1e430ef9943b25c3a16cfea5e23 100644 (file)
--- a/libcurl.c
+++ b/libcurl.c
@@ -3,7 +3,7 @@
 #include "libcurl.h"
 
 static cvar_t cl_curl_maxdownloads = {CVAR_SAVE, "cl_curl_maxdownloads","1", "maximum number of concurrent HTTP/FTP downloads"};
-static cvar_t cl_curl_maxspeed = CVAR_SAVE, "cl_curl_maxspeed","100", "maximum download speed (KiB/s)"};
+static cvar_t cl_curl_maxspeed = {CVAR_SAVE, "cl_curl_maxspeed","100", "maximum download speed (KiB/s)"};
 static cvar_t sv_curl_defaulturl = {CVAR_SAVE, "sv_curl_defaulturl","", "default autodownload source URL"};
 static cvar_t sv_curl_serverpackages = {CVAR_SAVE, "sv_curl_serverpackages","", "list of required files for the clients, separated by spaces"};
 static cvar_t cl_curl_enabled = {CVAR_SAVE, "cl_curl_enabled","0", "whether client's download support is enabled"};